diff --git a/apps/frontend/src/components/Inbox/MoveInboxItem.tsx b/apps/frontend/src/components/Inbox/MoveInboxItem.tsx index 6e525ffb3..102ccd16d 100644 --- a/apps/frontend/src/components/Inbox/MoveInboxItem.tsx +++ b/apps/frontend/src/components/Inbox/MoveInboxItem.tsx @@ -21,7 +21,12 @@ const MoveInboxItem = ({ inboxItemId }: Props) => { const inputRef = useRef(null) const [searchTerm, setSearchTerm] = useState("") const { spaces, fetchSpaces, loading: isSpaceLoading } = useSpaceStore() - const { updateItem, fetchInbox, items, isLoading: isInboxItemsLoading } = useCycleItemStore() + const { + updateItem, + fetchInbox, + items, + isLoading: isInboxItemsLoading, + } = useCycleItemStore() const [modalItems, setModalItems] = useState(items) const { toast } = useToast() @@ -128,7 +133,7 @@ const MoveInboxItem = ({ inboxItemId }: Props) => {
- {isInboxItemsLoading &&
Loading Inbox Items...
} + {isInboxItemsLoading &&
Loading Inbox Items...
} {filteredItems.length > 0 ? ( filteredItems?.map((item) => (