Skip to content

Commit cf4cdda

Browse files
committed
chore: remove (unused) BASE_URL prop from <Docs />
1 parent 5558047 commit cf4cdda

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/App/AppView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ const AppView: React.FC<AuthProps> = ({ handleSignIn, handleSignOut, loggedIn: w
210210
</Styled.Header>
211211
<hr />
212212
<Styled.Main>
213-
<Docs {...{ BASE_URL }} />
213+
<Docs />
214214
</Styled.Main>
215215
</>
216216
} />

src/components/Docs/Docs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import * as Styled from './Docs.style'
1414
* @component
1515
* @returns {JSX.Element} Documentation and instructions interface
1616
*/
17-
const Docs: React.FC<{ BASE_URL: string }> = ({ BASE_URL }) => {
17+
const Docs: React.FC = () => {
1818
return (
1919
<Styled.Div>
2020
<Styled.Section>

0 commit comments

Comments
 (0)