Skip to content

Commit

Permalink
Fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
spaceman03 committed Sep 13, 2024
1 parent 9919a34 commit c8ab473
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions apps/cms/src/admin/views/MerchProducts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ const MerchProducts: AdminViewComponent = ({ user, canAccessAdmin }) => {
useEffect(() => {
const fetchProducts = async () => {
try {
// eslint-disable-next-line @typescript-eslint/no-misused-promises
const products: Product[] = await ProductsApi.getProducts();
setData(products);
} catch (error) {
Expand Down

0 comments on commit c8ab473

Please sign in to comment.