Skip to content

Commit

Permalink
fix: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
sdisalvo-crd committed May 8, 2024
1 parent 740d93e commit 8d10bb5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/ui/App.scss
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ body {
display: none;
}

.scanner-spinner-container {
.app-spinner-container {
z-index: 1000;
position: absolute;
top: 0;
Expand All @@ -43,7 +43,7 @@ body {
}
}

&:not(.full-page-scanner) .scanner-spinner-container {
&:not(.full-page-scanner) .app-spinner-container {
display: none;
}

Expand Down
4 changes: 2 additions & 2 deletions src/ui/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ const App = () => {
/>
) : (
<div
className="scanner-spinner-container"
data-testid="scanner-spinner-container"
className="app-spinner-container"
data-testid="app-spinner-container"
>
<IonSpinner name="circular" />
</div>
Expand Down
1 change: 0 additions & 1 deletion src/ui/components/PageHeader/PageHeader.types.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { ReactNode } from "react";

interface PageHeaderProps {
translucent?: boolean;
backButton?: boolean;
beforeBack?: () => void;
onBack?: () => void;
Expand Down

0 comments on commit 8d10bb5

Please sign in to comment.