chore: enable no-unused vars (#2181)

This commit is contained in:
Himself65
2023-04-28 00:41:06 -05:00
committed by GitHub
parent b6ca2aa063
commit 70fbbb39c1
70 changed files with 206 additions and 225 deletions

View File

@@ -89,7 +89,7 @@ InvitePage.getLayout = page => {
);
};
const StyledContainer = styled('div')(({ theme }) => {
const StyledContainer = styled('div')(() => {
return {
height: '100vh',
...displayFlex('center', 'center'),

View File

@@ -27,7 +27,7 @@ import {
} from '../../../layouts/public-workspace-layout';
import type { NextPageWithLayout } from '../../../shared';
export const NavContainer = styled('div')(({ theme }) => {
export const NavContainer = styled('div')(() => {
return {
width: '100vw',
height: '52px',
@@ -36,7 +36,7 @@ export const NavContainer = styled('div')(({ theme }) => {
};
});
export const StyledBreadcrumbs = styled(Link)(({ theme }) => {
export const StyledBreadcrumbs = styled(Link)(() => {
return {
flex: 1,
...displayFlex('center', 'center'),