fix: add missing imports

This commit is contained in:
Twig 2025-07-10 23:03:46 +02:00
parent a3feb07e73
commit c9bea94ef8
No known key found for this signature in database
3 changed files with 8 additions and 1 deletions

View file

@ -17,6 +17,7 @@
</template>
<script lang="ts" setup>
import Button from '~/components/UserInterface/Button.vue';
import type { UserResponse } from '~/types/interfaces';
const { fetchUser } = useAuth();

View file

@ -33,6 +33,9 @@
</template>
<script lang="ts" setup>
import UserPopup from '~/components/User/UserPopup.vue';
import Button from '~/components/UserInterface/Button.vue';
import type { UserResponse } from '~/types/interfaces';
let newPfpFile: File;