fix signin signout and apply the new style

This commit is contained in:
root
2026-05-24 23:58:54 -04:00
parent bf97a072dd
commit 9bd0938951
68 changed files with 851 additions and 200 deletions
@@ -50,7 +50,7 @@ export default function RenterSavedCompaniesPage() {
.then((profile) => setCompanies(profile.savedCompanies ?? []))
.catch((err) => {
if (err instanceof RenterAuthError) {
router.replace('/renter/sign-in')
router.replace('/')
return
}
setErrorMsg(err instanceof Error ? err.message : dict.load)