fix: update user check in HomePage and change documentation link in SiteList to external URL

This commit is contained in:
Usman Baig
2026-01-29 21:15:24 +01:00
parent 5d67561506
commit bdba3dec58
2 changed files with 2 additions and 2 deletions

View File

@@ -17,7 +17,7 @@ export default function HomePage() {
const [sitesLoading, setSitesLoading] = useState(true)
useEffect(() => {
if (user) {
if (user?.org_id) {
loadSites()
}
}, [user])