Skip to content

Commit 2806ad5

Browse files
(Update):<-Toast Notif->
1 parent 7f83f09 commit 2806ad5

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

db.json

+15-15
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"rating": 4.6,
4949
"views": 6200,
5050
"country": "China",
51-
"price": 179.0
51+
"price": 179
5252
},
5353
{
5454
"id": 6,
@@ -58,7 +58,7 @@
5858
"rating": 4.9,
5959
"views": 11500,
6060
"country": "United States",
61-
"price": 1299.0
61+
"price": 1299
6262
},
6363
{
6464
"id": 7,
@@ -88,7 +88,7 @@
8888
"rating": 4.4,
8989
"views": 6900,
9090
"country": "France",
91-
"price": 199.0
91+
"price": 199
9292
},
9393
{
9494
"id": 10,
@@ -108,7 +108,7 @@
108108
"rating": 4.9,
109109
"views": 12500,
110110
"country": "United States",
111-
"price": 249.0
111+
"price": 249
112112
},
113113
{
114114
"id": 12,
@@ -118,7 +118,7 @@
118118
"rating": 4.5,
119119
"views": 7100,
120120
"country": "South Korea",
121-
"price": 299.0
121+
"price": 299
122122
},
123123
{
124124
"id": 13,
@@ -128,7 +128,7 @@
128128
"rating": 4.8,
129129
"views": 9800,
130130
"country": "Taiwan",
131-
"price": 1699.0
131+
"price": 1699
132132
},
133133
{
134134
"id": 14,
@@ -148,7 +148,7 @@
148148
"rating": 4.6,
149149
"views": 6700,
150150
"country": "Italy",
151-
"price": 349.0
151+
"price": 349
152152
},
153153
{
154154
"id": 16,
@@ -158,7 +158,7 @@
158158
"rating": 4.5,
159159
"views": 7100,
160160
"country": "France",
161-
"price": 299.0
161+
"price": 299
162162
},
163163
{
164164
"id": 17,
@@ -168,17 +168,17 @@
168168
"rating": 4.4,
169169
"views": 5900,
170170
"country": "United Kingdom",
171-
"price": 149.0
171+
"price": 149
172172
},
173173
{
174174
"id": 18,
175-
"name": "PhotoPro Camera",
175+
"name": "PhotoPro Camera 12",
176176
"description": "A professional-grade digital camera for photography enthusiasts.",
177177
"year_of_creation": 2023,
178178
"rating": 4.9,
179179
"views": 10200,
180180
"country": "Japan",
181-
"price": 799.0
181+
"price": 799
182182
},
183183
{
184184
"id": 19,
@@ -198,7 +198,7 @@
198198
"rating": 4.6,
199199
"views": 6800,
200200
"country": "Canada",
201-
"price": 149.0
201+
"price": 149
202202
},
203203
{
204204
"id": 21,
@@ -218,7 +218,7 @@
218218
"rating": 4.8,
219219
"views": 7100,
220220
"country": "South Korea",
221-
"price": 129.0
221+
"price": 129
222222
},
223223
{
224224
"id": 23,
@@ -238,7 +238,7 @@
238238
"rating": 4.5,
239239
"views": 6200,
240240
"country": "Japan",
241-
"price": 199.0
241+
"price": 199
242242
}
243243
]
244-
}
244+
}

src/Hook/useCreateProduct/index.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ const useUpdateProduct = () => {
99
const { mutate, status } = useMutation({
1010
mutationFn: (product: ProductState) => asyncCreateProduct(product),
1111
onSuccess: () => {
12-
toast.success('The update was successful', toastOptions);
13-
// Revalidate Cached From Server Update
12+
toast.success('The Create was successful', toastOptions);
13+
// Revalidate Cached From Server Create
1414
queryClient.invalidateQueries({
1515
queryKey: ['product'],
1616
});

src/Hook/useUpdateProduct/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const useUpdateProduct = () => {
99
const { mutate, status } = useMutation({
1010
mutationFn: (product: ProductState) => asyncUpdateProduct(product),
1111
onSuccess: () => {
12-
toast.success('The create was successful', toastOptions);
12+
toast.success('The Update was successful', toastOptions);
1313
// Revalidate Cached From Server Update
1414
queryClient.invalidateQueries({
1515
queryKey: ['product'],

0 commit comments

Comments
 (0)