Skip to content

Commit

Permalink
refactor(frontend): definePropsを別途インポートしている箇所を除去 (#15375)
Browse files Browse the repository at this point in the history
  • Loading branch information
kakkokari-gtyih authored Feb 1, 2025
1 parent 89b461a commit ae65aec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ SPDX-License-Identifier: AGPL-3.0-only

<script lang="ts" setup>
import * as Misskey from 'misskey-js';
import { defineProps, shallowRef } from 'vue';
import { shallowRef } from 'vue';
import MkLink from '@/components/MkLink.vue';
import { i18n } from '@/i18n.js';
import MkModalWindow from '@/components/MkModalWindow.vue';
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/src/components/MkRoleSelectDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ SPDX-License-Identifier: AGPL-3.0-only
</template>

<script setup lang="ts">
import { computed, defineProps, ref, toRefs } from 'vue';
import { computed, ref, toRefs } from 'vue';
import * as Misskey from 'misskey-js';
import { i18n } from '@/i18n.js';
import MkButton from '@/components/MkButton.vue';
Expand Down

0 comments on commit ae65aec

Please sign in to comment.