Skip to content

Commit

Permalink
[FIX] amazon filters not displaying when username is empty (#3600)
Browse files Browse the repository at this point in the history
fix: amazon filters not displaying when username is empty
  • Loading branch information
imLinguin authored Feb 26, 2024
1 parent cacc99e commit 4c0aba6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend/components/UI/LibraryFilters/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ export default function LibraryFilters() {
<div className="dropdown">
{epic.username && storeToggle('legendary')}
{gog.username && storeToggle('gog')}
{amazon.username && storeToggle('nile')}
{amazon.user_id && storeToggle('nile')}
{storeToggle('sideload')}

<hr />
Expand Down

0 comments on commit 4c0aba6

Please sign in to comment.