Skip to content

Commit

Permalink
fix cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
evavirseda committed Nov 14, 2024
1 parent a763367 commit 065ede2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/core/src/components/providers/KioskClientProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import { useIotaClientContext } from '@iota/dapp-kit';
import { KioskClient } from '@iota/kiosk';
import React, { createContext, useMemo, type ReactNode } from 'react';
import { createContext, useMemo, type ReactNode } from 'react';

export const KioskClientContext = createContext<KioskClient | null>(null);

Expand Down
2 changes: 1 addition & 1 deletion apps/core/src/components/providers/ThemeProvider.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) 2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

import React, { PropsWithChildren, useState, useEffect } from 'react';
import { PropsWithChildren, useState, useEffect } from 'react';
import { Theme } from '../../enums';
import { ThemeContext } from '../../contexts';

Expand Down

0 comments on commit 065ede2

Please sign in to comment.