-
-
- setValue("picture", imgUrl)
- }
- />
+
+
+
{watchPicture ? (
) : (
)}
+
+ setValue("picture", imgUrl)
+ }
+ />
diff --git a/styles/globals.css b/styles/globals.css
index ad7f8659..f833cf72 100644
--- a/styles/globals.css
+++ b/styles/globals.css
@@ -51,12 +51,14 @@ html {
height: 100%;
overflow: hidden;
position: relative;
+ scrollbar-gutter: stable;
}
body {
height: 100%;
overflow: auto;
position: relative;
+ scrollbar-gutter: stable;
}
.text-xxs {
diff --git a/utils/nostr/fetch-service.ts b/utils/nostr/fetch-service.ts
index 254d0b37..39db6c39 100644
--- a/utils/nostr/fetch-service.ts
+++ b/utils/nostr/fetch-service.ts
@@ -788,15 +788,15 @@ export const fetchReviews = async (
if (
!existingReview ||
createdAt >
- Number(existingReview.find((item) => item[0] === "created_at")?.[1])
+ Number(existingReview.find((item) => item[0] === "created_at")?.[1])
) {
const updatedReview = existingReview
? existingReview.map((item) => {
- if (item[0] === "created_at") {
- return ["created_at", createdAt.toString()];
- }
- return item;
- })
+ if (item[0] === "created_at") {
+ return ["created_at", createdAt.toString()];
+ }
+ return item;
+ })
: [...ratingTags, ["created_at", createdAt.toString()]];
productReviews.set(event.pubkey, updatedReview);