style: format code with Prettier

This commit fixes the style issues introduced in 3198dec according to the output
from Prettier.

Details: None
This commit is contained in:
deepsource-autofix[bot] 2024-05-10 13:47:13 +00:00 committed by GitHub
parent 3198dec20c
commit e95b0e04ab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -17,7 +17,8 @@ function createCartStore() {
}
try {
const newData: Record<string, CartItem> = await postVerifyCart(localData);
const newData: Record<string, CartItem> =
await postVerifyCart(localData);
cart.set(newData);
} catch (error) {
console.error("Could not load basket:", error);