Skip to content

Commit

Permalink
Fix all forms search (#94)
Browse files Browse the repository at this point in the history
* Remove unused interface declaration

Fixes #

* Add !important to .hidden

Fixes #77
  • Loading branch information
samglover authored Sep 20, 2024
1 parent a23d6ca commit b25f0e6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
2 changes: 1 addition & 1 deletion src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@ body {
}

.hidden {
display: none;
display: none !important;
}
7 changes: 0 additions & 7 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,11 @@ export const metadata = {
'Free online interactive court forms from Suffolk University Law School',
};

interface LayoutParams {
params: {
path: string;
};
}

export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
// console.log('params: ' + JSON.stringify(params));
return (
<html lang="en">
<body className={inter.className}>
Expand Down

0 comments on commit b25f0e6

Please sign in to comment.