Skip to content

Commit

Permalink
Fix alerting
Browse files Browse the repository at this point in the history
  • Loading branch information
SawyerHood committed Nov 9, 2023
1 parent 946c32a commit 85fed1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ function ExportButton({ setHtml }: { setHtml: (html: string) => void }) {
const json = await resp.json();

if (json.error) {
alert(json.error.message);
alert("Error from open ai: " + json.error);
return;
}

Expand Down

0 comments on commit 85fed1b

Please sign in to comment.