Skip to content

Commit 779db89

Browse files
committed
Remove unused variable
1 parent 6a094f9 commit 779db89

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/components/Layout/PageTitle.component.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
interface IPageTitleProps {
22
title: string;
3-
marginLeft?: boolean;
43
}
54

65
/**
@@ -10,7 +9,7 @@ interface IPageTitleProps {
109
* @param {string} title - Title for the page. Is set in <title>{title}</title>
1110
* @returns {JSX.Element} - Rendered component
1211
*/
13-
const PageTitle = ({ title, marginLeft }: IPageTitleProps) => (
12+
const PageTitle = ({ title }: IPageTitleProps) => (
1413
<section className="w-full bg-white border-b border-gray-200">
1514
<div className="container mx-auto py-12 px-6">
1615
<h1 className="text-2xl text-center tracking-wider text-gray-900 uppercase">

0 commit comments

Comments
 (0)