Skip to content

Commit 78133db

Browse files
committed
removed last unneccessary log
1 parent df227dc commit 78133db

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

  • app/(dashboard)/admin/products/[id]

app/(dashboard)/admin/products/[id]/page.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ const DashboardProductDetails = ({
9292

9393
if (response.ok) {
9494
const data = await response.json();
95-
console.log(data.message);
9695
} else {
9796
toast.error("File upload unsuccessful.");
9897
}
@@ -224,8 +223,6 @@ const DashboardProductDetails = ({
224223
className="select select-bordered"
225224
value={product?.inStock}
226225
onChange={(e) => {
227-
console.log(e.target.value);
228-
229226
setProduct({ ...product!, inStock: Number(e.target.value) });
230227
}}
231228
>

0 commit comments

Comments
 (0)