Skip to content

Commit

Permalink
fix: review fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Psami-wondah committed Sep 12, 2024
1 parent 1ac27ab commit b0ef886
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/components/Dialogs/EmbedChartDialog/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ export default function EmbedChartDialog(props: {
>
<p>
<span>Author:</span>
<span>{userProfile.username}</span>
<span>{userProfile?.username}</span>
</p>
<div
css={`
Expand Down
2 changes: 1 addition & 1 deletion src/app/state/store/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const storeContent: StoreModel = {
DataSourceSnackbarVisibility: persist(DataSourceSnackbarVisibilityState),
AuthToken: persist(AuthTokenState),
user: {
UserProfile: persist(UserProfile),
UserProfile: UserProfile,
},
dataThemes: {
DatasetGetList: DatasetGetList,
Expand Down

0 comments on commit b0ef886

Please sign in to comment.