Skip to content

Commit

Permalink
fix(backup): Open backup button redirect to '/photos' instead of '/'
Browse files Browse the repository at this point in the history
'/' can change if we are on flagship or not. So if we want to go to photos page like here, let's go explicitly to '/photos' route.
  • Loading branch information
zatteo committed Dec 7, 2023
1 parent 2019786 commit 5d925ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/photos/ducks/backup/components/OpenBackupButton.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const OpenBackupButton = () => {
return (
<Button
component={Link}
to="/"
to="/photos"
className="u-mt-half"
label={t('Backup.actions.viewMyPhotos')}
variant="secondary"
Expand Down

0 comments on commit 5d925ef

Please sign in to comment.