Skip to content

Commit

Permalink
Update export page wording to encourage users to allow pop-ups (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
zekehuntergreen committed Mar 21, 2024
1 parent 71f9175 commit c79d88a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions packages/client/src/components/ExportButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,18 @@ const ExportButton = () => {
if (requestStatus === RequestStatus.Failed) {
return (
<InfoMessage
message={`Export failed with error ${failureMessage ?? 'unknown failure'}`}
message={`Export failed with error ${failureMessage ?? 'unknown failure'}.
Make sure that your browser isn't blocking pop-ups so that you can log in to your Google account.`}
status={RequestStatus.Failed}
/>
);
}
if (loading) {
return (
<InfoMessage
message={'Export in progress...'}
message={
"Export in progress... If nothing happens, make sure that your browser isn't blocking pop-ups."
}
status={RequestStatus.InProgress}
/>
);
Expand Down

0 comments on commit c79d88a

Please sign in to comment.