Skip to content

Commit 6a1945f

Browse files
authored
Merge branch 'main' into ph/06-19-feat_dedicated_support_self-serve
2 parents f9a160c + 6be9459 commit 6a1945f

File tree

21 files changed

+346
-249
lines changed

21 files changed

+346
-249
lines changed

.changeset/heavy-ghosts-nail.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"thirdweb": patch
3+
---
4+
5+
Fix `poster` not shown in `MediaRenderer` component for 3D models

.changeset/quick-foxes-raise.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"thirdweb": patch
3+
---
4+
5+
Use decimal string for BuyWidget amount

.changeset/spicy-cooks-smoke.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"thirdweb": minor
3+
---
4+
5+
add berachain and berachain testnet in chains package

apps/dashboard/src/app/(app)/(dashboard)/(chain)/[chain_id]/[contractAddress]/public-pages/nft/overview/buy-edition-drop/buy-edition-drop.client.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ export function BuyEditionDrop(props: BuyEditionDropProps) {
184184

185185
return (
186186
<Form {...form}>
187-
<form className="space-y-5" onSubmit={handleSubmit}>
187+
<form className="space-y-4" onSubmit={handleSubmit}>
188188
<FormField
189189
control={form.control}
190190
name="amount"
@@ -215,7 +215,7 @@ export function BuyEditionDrop(props: BuyEditionDropProps) {
215215
}
216216
}
217217
}}
218-
className="!text-2xl h-auto bg-muted/50 font-bold"
218+
className="bg-muted/50"
219219
/>
220220
</FormControl>
221221
<FormMessage />

apps/dashboard/src/app/(app)/(dashboard)/(chain)/[chain_id]/[contractAddress]/public-pages/nft/overview/nfts-grid.tsx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,18 @@ function RenderClaimConditionInfo(props: {
282282
enabled: !props.isSkeleton,
283283
});
284284

285+
const noClaimConditionSet = !claimCondition.isPending && !claimCondition.data;
286+
287+
if (noClaimConditionSet) {
288+
return (
289+
<div>
290+
<p className="text-muted-foreground text-sm">
291+
Not available for purchase
292+
</p>
293+
</div>
294+
);
295+
}
296+
285297
return (
286298
<div className="flex flex-col items-start gap-0.5">
287299
<div className="flex items-center gap-1.5">

0 commit comments

Comments
 (0)