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 d0c3ff4 commit e8d372e
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 @@ -43,6 +43,7 @@ const MerchProducts: AdminViewComponent = ({ user, canAccessAdmin }) => {
if (data && data.length > 0) {
for (const key of Object.keys(new Product())) {
const renderCellComponent = RenderCellFactory.get(data[0], key);
// eslint-disable-next-line @typescript-eslint/no-floating-promises
const renderCell: React.FC<{ children?: React.ReactNode }> =
renderCellComponent instanceof Promise
? renderCellComponent
Expand Down

0 comments on commit e8d372e

Please sign in to comment.