Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/homepage/commit/5109facf1c8bf3fc8f6dbdddd21ba3369cc89df1 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fix layouts for initial tab ()

pull/2004/head v0.6.30
Denis Papec 2 years ago committed by GitHub
parent ee0afaa638
commit 5109facf1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -247,11 +247,7 @@ function Home({ initialSettings }) {
useEffect(() => {
if (!activeTab) {
const initialTab = decodeURI(asPath.substring(asPath.indexOf("#") + 1));
if (initialTab !== '/') {
setActiveTab(initialTab)
} else {
setActiveTab(tabs['0'] ?? false)
}
setActiveTab(initialTab === '/' ? slugify(tabs['0']) : initialTab)
}
})

Loading…
Cancel
Save