Skip to content

Commit

Permalink
feat(menu): return empty string for default case
Browse files Browse the repository at this point in the history
  • Loading branch information
CarinaDraganJW committed Sep 16, 2024
1 parent ddb166f commit ffc127e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/common/src/utils/urlFormatting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export const determinePath = ({ type, contentId }: { type: AppMenuType | undefin
case APP_CONTENT_TYPE.playlist:
return playlistURL(contentId);
default:
return playlistURL(contentId);
return '';
}
};

Expand Down

0 comments on commit ffc127e

Please sign in to comment.