Implement profile modal #52

Merged
twig merged 27 commits from profile-modal into main 2025-08-04 19:06:45 +00:00
2 changed files with 1 additions and 2 deletions
Showing only changes of commit 5d05ec31f2 - Show all commits

View file

@ -8,7 +8,6 @@
<script lang="ts" setup>
import ContextMenu from '~/components/UserInterface/ContextMenu.vue';
import { render } from 'vue';
import type { ContextMenuInterface } from './types/interfaces';
import loadPreferredTheme from '~/utils/loadPreferredTheme';

View file

@ -62,7 +62,7 @@ export const useProfile = () => {
if ("username" in profile) {
return uuidToDate(profile.uuid)
} else {
return uuidToDate(profile.user_uuid)
return uuidToDate(profile.user.uuid)
}
}