Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
peps committed Dec 16, 2024
1 parent f5663d7 commit 472e9fe
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { useState } from 'react';
import { useTranslation, Trans } from 'react-i18next';
import {
Wrapper,
Expand All @@ -16,7 +15,8 @@ import {

export default function Progress() {
const { t } = useTranslation('sos', { useSuspense: false });
const [percent, setPercent] = useState(50);

const percent = 50;

return (
<Wrapper>
Expand Down

0 comments on commit 472e9fe

Please sign in to comment.