Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion saas/app/pages/team-settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ function TeamSettings({ store, isMobile, firstGridItem, teamRequired, teamSlug }

await currentTeam.updateTheme({
name: newName,
avatarUrl: newAvatarUrl,
avatarUrl: responseFromApiServerForUpload.url,
});

notify('You successfully uploaded new Team logo.');
Expand Down
2 changes: 1 addition & 1 deletion saas/app/pages/your-settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ function YourSettings({ store, isMobile, firstGridItem, teamRequired }: Props) {

await currentUser.updateProfile({
name: newName,
avatarUrl: newAvatarUrl,
avatarUrl: responseFromApiServerForUpload.url,
});

notify('You successfully uploaded new avatar.');
Expand Down