Skip to content

Commit

Permalink
Fix formatting in Greeting component
Browse files Browse the repository at this point in the history
  • Loading branch information
lily4178993 committed Feb 4, 2024
1 parent bfc5798 commit 69fe0b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Greeting.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ const Greeting = () => {
}, [dispatch]);

if (status === 'loading') {
return <div className='font-thin animate-pulse'>...</div>;
return <div className="font-thin animate-pulse">...</div>;
} if (status === 'failed') {
return (
<div className='font-thin'>
<div className="font-thin">
Error:
{error}
</div>
Expand Down

0 comments on commit 69fe0b4

Please sign in to comment.