diff options
-rw-r--r-- | thallium-frontend/src/components/CartStatus.tsx | 2 | ||||
-rw-r--r-- | thallium-frontend/src/pages/CheckoutPage.tsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/thallium-frontend/src/components/CartStatus.tsx b/thallium-frontend/src/components/CartStatus.tsx index d528a87..e5a4265 100644 --- a/thallium-frontend/src/components/CartStatus.tsx +++ b/thallium-frontend/src/components/CartStatus.tsx @@ -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); diff --git a/thallium-frontend/src/pages/CheckoutPage.tsx b/thallium-frontend/src/pages/CheckoutPage.tsx index ae73009..4206360 100644 --- a/thallium-frontend/src/pages/CheckoutPage.tsx +++ b/thallium-frontend/src/pages/CheckoutPage.tsx @@ -15,7 +15,7 @@ const CheckoutPage = () => { {/* TODO */} Not yet implemented. </Card> - </MaxWidthContainer> + </MaxWidthContainer>; }; export default CheckoutPage; |