Skip to content

Commit

Permalink
redirect unauthenticated users to publications by default (#1441)
Browse files Browse the repository at this point in the history
  • Loading branch information
jarosenb committed Sep 18, 2024
1 parent 3e5261d commit f0168a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/datafiles/layouts/DataFilesBaseLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const DataFilesRoot: React.FC = () => {
const { user } = useAuthenticatedUser();
const defaultPath = user?.username
? '/tapis/designsafe.storage.default'
: '/tapis/designsafe.storage.community';
: '/public/designsafe.storage.published';
const { pathname } = useLocation();

const [notifyApi, contextHolder] = notification.useNotification();
Expand Down

0 comments on commit f0168a3

Please sign in to comment.