Skip to content

Commit b45817c

Browse files
committed
fix
1 parent 00b293f commit b45817c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bookstore-client/src/components/Store.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export function Store() {
3232
cartUserInformation: values,
3333
};
3434
const res = await postCart(body);
35-
if (res.status == 200) {
35+
if (res.status === 200) {
3636
alert("Order requested!");
3737
getBooks();
3838
clearCart();

0 commit comments

Comments
 (0)