Fixed remaining issues with types

This commit is contained in:
Luis Alvarez
2021-02-15 12:02:24 -05:00
parent 499516e967
commit bb0b8d2771
8 changed files with 26 additions and 14 deletions

View File

@@ -61,7 +61,7 @@ export default function Slug({
return router.isFallback ? (
<h1>Loading...</h1> // TODO (BC) Add Skeleton Views
) : (
<ProductView product={product} />
<ProductView product={product as any} />
)
}