fix: props and placeholder wip text

This commit is contained in:
enes 2024-10-24 10:48:49 +02:00
parent 99ce338502
commit 53861a36d3
2 changed files with 5 additions and 7 deletions

View File

@ -74,14 +74,12 @@ interface NavButtonProps extends NavLinkProps {
}
const NavButton = ({
to,
end,
svgPath,
viewBox = '0 0 512 512'
viewBox = '0 0 512 512',
...rest
}: NavButtonProps) => (
<NavLink
to={to}
end={end}
{...rest}
className={({ isActive }) =>
`btn btnMain socialNavInsideBtn ${
isActive ? 'socialNavInsideBtnActive' : ''

View File

@ -499,8 +499,8 @@ export const ProfilePage = () => {
</>
)}
{tab === 1 && <>USER's BLOGS WIP</>}
{tab === 2 && <>USER's POSTS WIP</>}
{tab === 1 && <>WIP</>}
{tab === 2 && <>WIP</>}
</div>
</div>
</div>