Skip to content

Commit

Permalink
fix(ci): prettier format issues
Browse files Browse the repository at this point in the history
  • Loading branch information
borolepratik committed Jul 1, 2024
1 parent 92ff69f commit c963965
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"build": "next build",
"cypress:open": "cypress open",
"format": "prettier --write .",
"format:check": "prettier --check --debug-check .",
"format:check": "prettier --check .",
"lint": "next lint",
"lint:fix": "eslint . --fix && pnpm format",
"lint:strict": "eslint --max-warnings=0",
Expand Down
2 changes: 1 addition & 1 deletion src/app/dashboard/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default function Page() {
alt='placeholder'
/>
</div>
<div className='rounded border border-primary p-4'>
<div className='rounded border border-primary p-4'>
<h3>Driver Standings</h3>
<Image
width={400}
Expand Down
2 changes: 1 addition & 1 deletion src/app/not-found.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default function NotFound() {
</div>

<Link href='/dashboard'>
<button className='rounded border border-current px-3 py-1 '>
<button className='rounded border border-current px-3 py-1'>
Return to Dashboard
</button>
</Link>
Expand Down
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const Hero = () => (
{/* Slick Telemetry */}
<div className='grid text-center md:flex-1 lg:gap-2'>
<h1 className='text-4xl font-bold lg:text-6xl'>Slick Telemetry</h1>
<p className='font-semi-boldl text-lg lg:text-3xl'>
<p className='font-semi-boldl text-lg lg:text-3xl'>
Your home for Formula 1 insights
</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/TopNav/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const TopNav = () => {
<div className='container flex h-16 items-center'>
<Link
href='/'
className='btn btn-ghost flex items-center gap-x-2 text-xl font-extrabold tracking-tight '
className='btn btn-ghost flex items-center gap-x-2 text-xl font-extrabold tracking-tight'
>
<Image
src='/slick-telemetry-logo.png'
Expand Down

0 comments on commit c963965

Please sign in to comment.