We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca5548b commit 34476eaCopy full SHA for 34476ea
1 file changed
frontend/components/parts/FreeMint.vue
@@ -24,11 +24,18 @@
24
<BtnLink class="max-w-xl" :link="`${domain}/claim${stringifyQuery($route.query, '?')}`" />
25
</div>
26
27
+ <n-space class="w-full my-8" size="large" align="center" justify="space-between">
28
+ <div></div>
29
+ <n-space size="large">
30
+ <Btn type="secondary" :loading="userStore.loading" @click="fetchUsers()">Refresh </Btn>
31
+ </n-space>
32
33
<TablePoapReservation />
34
35
</template>
36
37
<script lang="ts" setup>
38
const userStore = useUserStore();
39
+const { fetchUsers } = useUser();
40
const domain = window.location.origin;
41
</script>
0 commit comments