chore: Remove explicit defineProps import (no-changelog) (#12867)

This commit is contained in:
Charlie Kolb 2025-01-27 16:58:29 +01:00 committed by GitHub
parent 0979a99309
commit 0bb65f27ab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,7 +3,7 @@
// eslint-disable import/no-extraneous-dependencies
import { onClickOutside } from '@vueuse/core';
import { isEmojiSupported } from 'is-emoji-supported';
import { ref, defineProps, computed } from 'vue';
import { ref, computed } from 'vue';
import { useI18n } from '../../composables/useI18n';
import N8nTooltip from '../N8nTooltip';