File tree 3 files changed +18
-18
lines changed
3 files changed +18
-18
lines changed Original file line number Diff line number Diff line change 48
48
"rating" : 4.6 ,
49
49
"views" : 6200 ,
50
50
"country" : " China" ,
51
- "price" : 179.0
51
+ "price" : 179
52
52
},
53
53
{
54
54
"id" : 6 ,
58
58
"rating" : 4.9 ,
59
59
"views" : 11500 ,
60
60
"country" : " United States" ,
61
- "price" : 1299.0
61
+ "price" : 1299
62
62
},
63
63
{
64
64
"id" : 7 ,
88
88
"rating" : 4.4 ,
89
89
"views" : 6900 ,
90
90
"country" : " France" ,
91
- "price" : 199.0
91
+ "price" : 199
92
92
},
93
93
{
94
94
"id" : 10 ,
108
108
"rating" : 4.9 ,
109
109
"views" : 12500 ,
110
110
"country" : " United States" ,
111
- "price" : 249.0
111
+ "price" : 249
112
112
},
113
113
{
114
114
"id" : 12 ,
118
118
"rating" : 4.5 ,
119
119
"views" : 7100 ,
120
120
"country" : " South Korea" ,
121
- "price" : 299.0
121
+ "price" : 299
122
122
},
123
123
{
124
124
"id" : 13 ,
128
128
"rating" : 4.8 ,
129
129
"views" : 9800 ,
130
130
"country" : " Taiwan" ,
131
- "price" : 1699.0
131
+ "price" : 1699
132
132
},
133
133
{
134
134
"id" : 14 ,
148
148
"rating" : 4.6 ,
149
149
"views" : 6700 ,
150
150
"country" : " Italy" ,
151
- "price" : 349.0
151
+ "price" : 349
152
152
},
153
153
{
154
154
"id" : 16 ,
158
158
"rating" : 4.5 ,
159
159
"views" : 7100 ,
160
160
"country" : " France" ,
161
- "price" : 299.0
161
+ "price" : 299
162
162
},
163
163
{
164
164
"id" : 17 ,
168
168
"rating" : 4.4 ,
169
169
"views" : 5900 ,
170
170
"country" : " United Kingdom" ,
171
- "price" : 149.0
171
+ "price" : 149
172
172
},
173
173
{
174
174
"id" : 18 ,
175
- "name" : " PhotoPro Camera" ,
175
+ "name" : " PhotoPro Camera 12 " ,
176
176
"description" : " A professional-grade digital camera for photography enthusiasts." ,
177
177
"year_of_creation" : 2023 ,
178
178
"rating" : 4.9 ,
179
179
"views" : 10200 ,
180
180
"country" : " Japan" ,
181
- "price" : 799.0
181
+ "price" : 799
182
182
},
183
183
{
184
184
"id" : 19 ,
198
198
"rating" : 4.6 ,
199
199
"views" : 6800 ,
200
200
"country" : " Canada" ,
201
- "price" : 149.0
201
+ "price" : 149
202
202
},
203
203
{
204
204
"id" : 21 ,
218
218
"rating" : 4.8 ,
219
219
"views" : 7100 ,
220
220
"country" : " South Korea" ,
221
- "price" : 129.0
221
+ "price" : 129
222
222
},
223
223
{
224
224
"id" : 23 ,
238
238
"rating" : 4.5 ,
239
239
"views" : 6200 ,
240
240
"country" : " Japan" ,
241
- "price" : 199.0
241
+ "price" : 199
242
242
}
243
243
]
244
- }
244
+ }
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ const useUpdateProduct = () => {
9
9
const { mutate, status } = useMutation ( {
10
10
mutationFn : ( product : ProductState ) => asyncCreateProduct ( product ) ,
11
11
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
14
14
queryClient . invalidateQueries ( {
15
15
queryKey : [ 'product' ] ,
16
16
} ) ;
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ const useUpdateProduct = () => {
9
9
const { mutate, status } = useMutation ( {
10
10
mutationFn : ( product : ProductState ) => asyncUpdateProduct ( product ) ,
11
11
onSuccess : ( ) => {
12
- toast . success ( 'The create was successful' , toastOptions ) ;
12
+ toast . success ( 'The Update was successful' , toastOptions ) ;
13
13
// Revalidate Cached From Server Update
14
14
queryClient . invalidateQueries ( {
15
15
queryKey : [ 'product' ] ,
You can’t perform that action at this time.
0 commit comments