diff --git a/src/app/Components/Store/StoreItemView.tsx b/src/app/Components/Store/StoreItemView.tsx
index 8cbb6f0..5042014 100644
--- a/src/app/Components/Store/StoreItemView.tsx
+++ b/src/app/Components/Store/StoreItemView.tsx
@@ -7,29 +7,20 @@ const StoreItemView = (props: {
storeItems: IStoreItem[];
buyStoreItem: (storeItemId: number) => void;
}) => {
- const availableItems = () => {
- const items = props.storeItems.filter((item) => !item.isOwned);
- if (items.length > 0) {
- items.map((storeItem, id) => (
-
No items.. Check back later!
- ); - } - }; - return (