diff --git a/src/components/basket/table.tsx b/src/components/basket/table.tsx
index dadf58f..4a237c1 100644
--- a/src/components/basket/table.tsx
+++ b/src/components/basket/table.tsx
@@ -1,6 +1,6 @@
import React from 'react';
import {Search2Icon, DeleteIcon} from '@chakra-ui/icons';
-import {Table, Thead, Tr, Th, Tbody, Td, Tag, IconButton, TableProps, Tooltip, Wrap, Skeleton} from '@chakra-ui/react';
+import {Table, Thead, Tr, Th, Tbody, Td, Tag, IconButton, TableProps, Tooltip, Wrap, Skeleton, Box} from '@chakra-ui/react';
import {observer} from 'mobx-react-lite';
import InstructorList from 'src/components/sections-table/instructor-list';
import LocationWithPopover from 'src/components/location-with-popover';
@@ -310,46 +310,48 @@ const BasketTable = (props: BasketTableProps) => {
const {apiState} = useStore();
return (
-
-
-
- Title |
- Section |
- Instructors |
- Schedule |
- Location |
- CRN |
- Credits |
- {
- !props.isForCapture && (
- <>
- Seats |
- Go |
- Remove |
- >
- )
- }
-
-
+
+
+
+
+ Title |
+ Section |
+ Instructors |
+ Schedule |
+ Location |
+ CRN |
+ Credits |
+ {
+ !props.isForCapture && (
+ <>
+ Seats |
+ Go |
+ Remove |
+ >
+ )
+ }
+
+
- {
- apiState.hasDataForTrackedEndpoints ? (
-
- ) : (
-
- {Array.from({length: 4}).map((_, i) => (
- // eslint-disable-next-line react/no-array-index-key
-
- ))}
-
- )
- }
-
+ {
+ apiState.hasDataForTrackedEndpoints ? (
+
+ ) : (
+
+ {Array.from({length: 4}).map((_, i) => (
+ // eslint-disable-next-line react/no-array-index-key
+
+ ))}
+
+ )
+ }
+
+
);
};
diff --git a/src/pages/index.tsx b/src/pages/index.tsx
index ffc89ee..4a8255a 100644
--- a/src/pages/index.tsx
+++ b/src/pages/index.tsx
@@ -73,7 +73,6 @@ const MainContent = () => {