Skip to content

Commit

Permalink
chore: lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
okjodom committed Jul 20, 2023
1 parent e336b87 commit e44e6ea
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion apps/gateway-ui/src/components/WithdrawTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export const WithdrawTab = React.memo(function WithdrawTab({
setWithdrawObject({ ...withdrawObject, amount: 0, address: '' });
setModalState(false);
})
.catch(({ message, error }) => {
.catch(({ error }) => {
console.error(error);
setError(`${t('withdraw_tab.error_request')}`);
});
Expand Down
1 change: 0 additions & 1 deletion apps/guardian-ui/src/setup/FederationSetup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ import { ConnectGuardians } from '../components/ConnectGuardians';
import { RunDKG } from '../components/RunDKG';
import { VerifyGuardians } from '../components/VerifyGuardians';
import { SetupComplete } from '../components/SetupComplete';
import { SetupProgress as SetupStepper } from '../components/SetupProgress';
import { useTranslation } from '@fedimint/utils';

const PROGRESS_ORDER: SetupProgress[] = [
Expand Down

0 comments on commit e44e6ea

Please sign in to comment.