Skip to content

Commit

Permalink
fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
JeromeBu committed Dec 5, 2024
1 parent fd48166 commit 21abaa3
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions web/src/ui/pages/account/Account.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ function AccountReady(props: { className?: string }) {

const [emailInputValue, setEmailInputValue] = useState(email.value);
/* prettier-ignore */
const [organizationInputValue, setOrganizationInputValue] = useState(organization.value);
const [, setOrganizationInputValue] = useState(organization.value);

const evtAboutInputValue = useConst(() => Evt.create(aboutAndIsPublic.about));

Expand Down Expand Up @@ -314,20 +314,12 @@ const useStyles = tss.withName({ Account }).create({
"width": "100%"
}
},
"circularProgress": {
"position": "absolute",
"left": "calc(50% - 15px)",
"top": 5
},
"paddingBlock": {
"height": 125,
[fr.breakpoints.down("md")]: {
"height": 150
}
},
"resetPasswordLink": {
"marginTop": fr.spacing("6v")
},
"isPublicCheckbox": {
"marginBottom": 0,
[`&&& .${fr.cx("fr-message")}`]: {
Expand Down

0 comments on commit 21abaa3

Please sign in to comment.