Skip to content

Commit

Permalink
fix(web): 🚑 hotfix nuxt layout shift bug
Browse files Browse the repository at this point in the history
temp hotfix for nuxt/nuxt#25214
  • Loading branch information
McPizza0 committed Feb 8, 2024
1 parent b2b1e41 commit 4829afc
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion apps/web-app/pages/[orgSlug]/index.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<script setup lang="ts">
const orgSlug = useRoute().params.orgSlug as string;
navigateTo(`/${orgSlug}/convo`);
reloadNuxtApp({
path: `/${orgSlug}/convo`,
force: true,
ttl: 5000
});
// navigateTo(`/${orgSlug}/convo`);
</script>
<template><div></div></template>

0 comments on commit 4829afc

Please sign in to comment.