Skip to content

Commit

Permalink
attempt to fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
molti-tasking committed Dec 15, 2024
1 parent 78ef843 commit 226b62a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/useExploratoryStore.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export const useExploratoryStore = create<DataStore>((set, get) => {
} catch (error) {
alert(
`We couldn't generate data: ${String(
"message" in error ? error.message : error
error instanceof Error ? error.message : error
)}`
);
}
Expand Down

0 comments on commit 226b62a

Please sign in to comment.