Skip to content

Commit

Permalink
website: remove extraneous symbols from range-min-max example (#1438)
Browse files Browse the repository at this point in the history
  • Loading branch information
mjomble authored Apr 10, 2022
1 parent 301d1c0 commit b4e84eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/examples/range-min-max.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default function App() {
} else if (range.to) {
footer = (
<p>
{format(range.from, 'PPP')}${format(range.to, 'PPP')}`
{format(range.from, 'PPP')}{format(range.to, 'PPP')}
</p>
);
}
Expand Down

0 comments on commit b4e84eb

Please sign in to comment.