We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 583c840 commit 1d87c80Copy full SHA for 1d87c80
remix/lessons/05-forms-and-actions/lecture/routes/_products-layout._index.tsx
@@ -58,6 +58,7 @@ export default function ProductsIndex() {
58
<Tiles>
59
{products.map((product) => {
60
const quantityInCart = cart?.find((c) => c.productId === product.id)?.quantity || 0
61
+ // const isSubmitting = navigation.state === 'submitting' && navigation?.formData?.get('productId') === product.id.toString()
62
63
return (
64
<div
0 commit comments