Skip to content

Commit

Permalink
Don't show "Could not get a user ID..." nag on embeds
Browse files Browse the repository at this point in the history
  • Loading branch information
miko committed Jan 21, 2025
1 parent 9680406 commit 872bdc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/component/app/view.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ function App(props: Props) {

// Only 1 nag is possible, so show the most important:

if (user === null) {
if (user === null && !embedPath) {
return <NagNoUser />;
}

Expand Down

0 comments on commit 872bdc7

Please sign in to comment.