Skip to content

Commit 955ffb9

Browse files
committed
5398: Fix lint errors
1 parent eef744d commit 955ffb9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/stories/Library/Modals/modal-login/ModalLogin.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { useEffect, useState } from "react";
22

33
import { ModalCloseButton, ModalFallbackButton } from "../ModalShared";
4-
import { ButtonUI } from "../../Buttons/button-ui/ButtonUI";
54
import { Button } from "../../Buttons/button/Button";
65
import { Links } from "../../links/Links";
76

@@ -29,7 +28,7 @@ export const ModalLogin: React.FC<ModalLoginProps> = ({ showModal }) => {
2928
<div className="modal__backdrop">
3029
<div
3130
className={`modal modal-login modal-right modal-padding ${
32-
showModal ? "modal-show" : ""
31+
shownModal ? "modal-show" : ""
3332
}`}
3433
>
3534
<div className="modal__screen-reader-description" id="describemodal">

0 commit comments

Comments
 (0)