fix back routing error

This commit is contained in:
Boof2015
2026-07-01 18:45:20 -04:00
parent 06c822f513
commit 4d67e52f2e
2 changed files with 28 additions and 6 deletions
+1 -1
View File
@@ -407,7 +407,7 @@ export default function HomeScreen() {
const openAlbum = (album: Album) => {
router.push({
pathname: '/library/album/[key]',
params: { key: album.identity_key },
params: { key: album.identity_key, from: 'home' },
});
};