Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

Commit

Permalink
Merge pull request #192 from RichardW98/fix-imports
Browse files Browse the repository at this point in the history
fix imports
  • Loading branch information
RichardW98 committed Jul 20, 2023
2 parents aa727d9 + cfe6c8b commit eda75fc
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import {
configApiRef,
errorApiRef,
fetchApiRef,
useApi,
Expand All @@ -17,7 +18,6 @@ import type { User } from './types';
import { getToken } from './getToken';
import { SessionStorageKey } from './ParodosSigninIdentity';
import { BrandIcon } from '../icons/BrandIcon';
import { fetchApiRef } from '@backstage/core-plugin-api';

type ParodosSignInPageProps = SignInPageProps;

Expand Down Expand Up @@ -57,7 +57,6 @@ const useStyles = makeStyles(theme => ({
}));

export function SignInPage({ onSignInSuccess }: ParodosSignInPageProps) {
const { fetch } = useApi(fetchApiRef);
const styles = useStyles();
const errorApi = useApi(errorApiRef);
const configApi = useApi(configApiRef);
Expand Down

0 comments on commit eda75fc

Please sign in to comment.