diff options
| author | 2024-09-11 17:51:50 +0100 | |
|---|---|---|
| committer | 2024-09-11 17:52:12 +0100 | |
| commit | 2bcb634b5ddd8dfffafde6bbc443503ea7c61b0f (patch) | |
| tree | 5ec0e30043ffff8268742b61e8ecd7befe7743d6 /thallium-frontend/src/components/CartStatus.tsx | |
| parent | Add route for checkout page (diff) | |
Add missing semicolon
Diffstat (limited to 'thallium-frontend/src/components/CartStatus.tsx')
| -rw-r--r-- | thallium-frontend/src/components/CartStatus.tsx | 2 | 
1 files changed, 1 insertions, 1 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); | 
