refactor: Destructure defineProps in SwapNodesCard.vue

This commit is contained in:
jaeone94
2026-02-26 22:03:42 +09:00
parent 5aa4baf116
commit 1be6d27024

View File

@@ -27,7 +27,7 @@ import SwapNodeGroupRow from './SwapNodeGroupRow.vue'
const { t } = useI18n()
const props = defineProps<{
const { swapNodeGroups, showNodeIdBadge } = defineProps<{
swapNodeGroups: SwapNodeGroup[]
showNodeIdBadge: boolean
}>()