Skip to content

Commit

Permalink
chore: fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamKelley committed May 24, 2024
1 parent 1616029 commit 997f5fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/components/src/ArcSweep/ArcSweep.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const ArcSweep = React.forwardRef<ArcSweepRef, ArcSweepProps>(

if (arc === undefined) {
throw Error(
'Oops! `ArcSweep` received `arc: undefined`. Did you mean to either (1) render as a child of `Arc`? orpass `arc` from `generateArc`?'
'Oops! `ArcSweep` received `arc: undefined`. Did you mean to either (1) render as a child of `Arc`? or (2) pass `arc` from `generateArc`?'
);
}

Expand Down

0 comments on commit 997f5fa

Please sign in to comment.