More mobile styling fixes

This commit is contained in:
2025-02-17 13:51:59 -05:00
parent 98a1e3126b
commit 24f5d79a55
9 changed files with 234 additions and 246 deletions

View File

@@ -17,10 +17,10 @@ export const useCreatorProfileStore = defineStore(
async (newValue) => {
if (newValue) {
await fetchCreatorProfile();
if (value.value === undefined) {
await router.push('/');
} else {
if (value.value) {
await router.push(`/@${value.value.name}`);
} else {
await router.push('/');
}
} else {
value.value = undefined;