Skip to content

Commit cfc7aa8

Browse files
committed
frontend: fix new eslint rules by make webfix
1 parent 043348f commit cfc7aa8

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

frontends/web/src/routes/device/bitbox01/bitbox01.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ type GoalType = (typeof GOAL)[keyof typeof GOAL];
5050

5151
type Props = {
5252
deviceID: string;
53-
}
53+
};
5454

5555
export const BitBox01 = ({ deviceID }: Props) => {
5656
const [deviceStatus, setDeviceStatus] = useState<DeviceStatusType | ''>('');

frontends/web/src/routes/device/bitbox01/check.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import { apiPost } from '@/utils/request';
2525
type Props = {
2626
deviceID: string;
2727
selectedBackup?: string;
28-
}
28+
};
2929

3030
export const Check = ({ deviceID, selectedBackup }: Props) => {
3131
const { t } = useTranslation();

frontends/web/src/routes/device/bitbox01/create.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import { DialogLegacy, DialogButtons } from '@/components/dialog/dialog-legacy';
2626
type Props = {
2727
deviceID: string;
2828
onCreate: () => void;
29-
}
29+
};
3030

3131
export const Create = ({ deviceID, onCreate }: Props) => {
3232
const { t } = useTranslation();

frontends/web/src/routes/device/bitbox01/settings/components/changepin.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import { SettingsButton } from '@/components/settingsButton/settingsButton';
2828
type Props = {
2929
deviceID: string;
3030
disabled?: boolean;
31-
}
31+
};
3232

3333
export const ChangePIN = ({ deviceID, disabled }: Props) => {
3434
const { t } = useTranslation();

frontends/web/src/routes/device/bitbox01/settings/components/reset.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import style from '../../bitbox01.module.css';
2828

2929
type Props = {
3030
deviceID: string;
31-
}
31+
};
3232

3333
export const Reset = ({ deviceID }: Props) => {
3434
const { t } = useTranslation();

frontends/web/src/routes/device/bitbox01/setup/seed-create-new.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ type Props = {
4040
deviceID: string;
4141
goBack: () => void;
4242
onSuccess: () => void;
43-
}
43+
};
4444

4545
type Agreements = {
4646
password_change: boolean;
4747
password_required: boolean;
4848
funds_access: boolean;
49-
}
49+
};
5050

5151
export const SeedCreateNew = ({
5252
deviceID,

frontends/web/src/routes/device/bitbox01/unlock.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const stateEnum = Object.freeze({
3737

3838
type Props = {
3939
deviceID: string;
40-
}
40+
};
4141

4242
type UnlockResponse = {
4343
success: true;
@@ -47,7 +47,7 @@ type UnlockResponse = {
4747
errorMessage?: string;
4848
remainingAttempts?: number;
4949
needsLongTouch?: boolean;
50-
}
50+
};
5151

5252
export const Unlock = ({ deviceID }: Props) => {
5353
const { t } = useTranslation();

0 commit comments

Comments
 (0)