Skip to content

Commit

Permalink
chore: lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TeeGoood committed Jul 15, 2024
1 parent 7c43ab7 commit 0432784
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions src/app/rpkm/page.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
'use client'
'use client';

import UserCard from '@/components/UserCard'
import React from 'react'
import UserCard from '@/components/UserCard';
import React from 'react';

const page = () => {
return (
<div>
<UserCard />
<UserCard />
</div>
)
}
);
};

export default page
export default page;
4 changes: 2 additions & 2 deletions src/components/(main)/pdpa/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export default function Pdpa(props: PdpaProps) {
</svg>
</button>
</div>
<div className='absolute top-8 flex flex-col items-center pb-8 px-2'>
<div className="absolute top-8 flex flex-col items-center pb-8 px-2">
<h1 className="font-semibold text-5xl">PDPA</h1>
<div className="my-8 border border-black h-[1px] w-[95%]"></div>
<h2 className="text-center text-xl font-semibold">
Expand Down Expand Up @@ -125,8 +125,8 @@ export default function Pdpa(props: PdpaProps) {
>
รับทราบและยินยอม
</button>
</div>
</div>
</div>
</div>
);
}

0 comments on commit 0432784

Please sign in to comment.