Skip to content

Commit

Permalink
chore(app): Loading states of total cursors
Browse files Browse the repository at this point in the history
  • Loading branch information
ful1e5 committed Dec 19, 2023
1 parent 11278ce commit 8a60899
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Cursors/loading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ type Props = {};

// eslint-disable-next-line no-unused-vars
export const CursorsLoading: React.FC<Props> = (_props) => {
const cards = Array.from(new Array(12), (_, i) => i + 1);
const cards = Array.from(new Array(63), (_, i) => i + 1);
return (
<div className='container sm:px-4'>
<div className='grid grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-2 sm:gap-4'>
Expand Down

0 comments on commit 8a60899

Please sign in to comment.