Skip to content

Commit

Permalink
Add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
jb3 committed Sep 11, 2024
1 parent f184ac4 commit 2bcb634
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion thallium-frontend/src/components/CartStatus.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const DetailsSpan = styled.span`
color: ${(props) => props.theme.accent};
font-weight: bold;
font-size: 1.1em;
`
`;

const CartStatus = () => {
const cart = useSelector((state: RootState) => state.cart);
Expand Down
2 changes: 1 addition & 1 deletion thallium-frontend/src/pages/CheckoutPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const CheckoutPage = () => {
{/* TODO */}
Not yet implemented.
</Card>
</MaxWidthContainer>
</MaxWidthContainer>;
};

export default CheckoutPage;

0 comments on commit 2bcb634

Please sign in to comment.