Fix doubled side rail and some space navigation

This commit is contained in:
Jon Staab
2026-06-16 15:04:39 -07:00
parent deb2b31466
commit fd4e7a9f2d
4 changed files with 7 additions and 9 deletions
+2 -2
View File
@@ -26,7 +26,7 @@ import {
import {DM_KINDS, CONTENT_KINDS, makeCommentFilter} from "@app/content"
import {notificationSettings, shouldNotify, userSettingsValues} from "@app/settings"
import {userSpaceUrls} from "@app/groups"
import {makeSpacePath, getEventPath} from "@app/routes"
import {getEventPath, goToSpace} from "@app/routes"
export type PushSubscription = {
key: string
@@ -111,7 +111,7 @@ export const onPushNotificationAction = async (action: ActionPerformed) => {
if (event) {
goto(await getEventPath(event, [relay]))
} else {
goto(makeSpacePath(relay))
goToSpace(relay)
}
}