From 342bee7cc7d43a7ee923ae855dc6511be78c2c34 Mon Sep 17 00:00:00 2001 From: Vitor Mattos Date: Mon, 24 Jun 2024 18:56:03 -0300 Subject: [PATCH] chore: Hide sidebar when is incomplete setup Signed-off-by: Vitor Mattos --- src/Components/LeftSidebar/LeftSidebar.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Components/LeftSidebar/LeftSidebar.vue b/src/Components/LeftSidebar/LeftSidebar.vue index 29b119109..b60da4a78 100644 --- a/src/Components/LeftSidebar/LeftSidebar.vue +++ b/src/Components/LeftSidebar/LeftSidebar.vue @@ -113,6 +113,11 @@ export default { return this.$route.query._back_to_signature }, showLeftSidebar() { + if (this.$route.name === 'Incomplete' + || this.$route.name === 'IncompleteExternal' + ) { + return false + } return getCurrentUser() || !this.$route.path.startsWith('/p/') },