Skip to content

Commit

Permalink
fix(dashboard/user-profile-view): type-check errors
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeNamedRobin committed Sep 4, 2024
1 parent 54328b4 commit f7e78e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/dashboard/src/modules/user/views/UserProfileView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const dataAnalysis: Ref<boolean> = ref(false);
const { current } = storeToRefs(userStore);
const toast = useToast();
const { t } = useI18n();
const gewisUser: Ref<GewisUserResponse | undefined> = ref(undefined);
const gewisUser: Ref<GewisUserResponse | undefined | void> = ref(undefined);
onMounted(async () => {
if (!userStore.current.user) {
Expand Down

0 comments on commit f7e78e3

Please sign in to comment.