Skip to content

Commit

Permalink
lint and removed class-name that did not exist
Browse files Browse the repository at this point in the history
  • Loading branch information
framitdavid committed Feb 12, 2025
1 parent e7967b6 commit f6eb862
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import classes from './DeploymentEnvironmentLogList.module.css';
import { Heading, Link, Table } from '@digdir/designsystemet-react';
import { Link, Table } from '@digdir/designsystemet-react';
import { DateUtils } from '@studio/pure-functions';
import { useTranslation } from 'react-i18next';
import classNames from 'classnames';
Expand Down Expand Up @@ -46,14 +46,7 @@ export const DeploymentEnvironmentLogList = ({
return <CheckmarkCircleFillIcon className={classnames} />;
case BuildResult.none:
default:
return (
<StudioSpinner
size='small'
spinnerTitle=''
showSpinnerTitle={false}
className={classes.loadingSpinner}
/>
);
return <StudioSpinner size='small' spinnerTitle='' showSpinnerTitle={false} />;
}
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import type { KubernetesDeployment } from 'app-shared/types/api/KubernetesDeploy
import { DateUtils } from '@studio/pure-functions';
import { ExternalLinkIcon } from '@studio/icons';
import { DeployMoreOptionsMenu } from './DeployMoreOptionsMenu/DeployMoreOptionsMenu';
import { FeatureFlag, shouldDisplayFeature } from 'app-shared/utils/featureToggleUtils';

export interface DeploymentEnvironmentStatusProps {
lastPublishedDate?: string;
Expand Down

0 comments on commit f6eb862

Please sign in to comment.