Skip to content

Commit e20970d

Browse files
committed
fix merge conflicts
2 parents d1fa243 + 8e357b3 commit e20970d

File tree

61 files changed

+3408
-1729
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+3408
-1729
lines changed

.changeset/fine-bobcats-rhyme.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/hot-pets-tie.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+
Update implementations

.changeset/neat-squids-go.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@thirdweb-dev/nexus": minor
3+
---
4+
5+
initial release

.changeset/weak-guests-fry.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/wise-actors-attack.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/witty-spies-know.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+
expose some useful erc20 extensions

.github/workflows/CI.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,9 +188,16 @@ jobs:
188188
- name: Build Packages
189189
run: pnpm build
190190

191-
- name: Report bundle size
191+
- name: Report bundle size (thirdweb)
192192
uses: andresz1/size-limit-action@94bc357df29c36c8f8d50ea497c3e225c3c95d1d # v1.8.0
193193
with:
194194
github_token: ${{ secrets.GITHUB_TOKEN }}
195195
package_manager: pnpm
196-
directory: packages/thirdweb
196+
directory: packages/thirdweb
197+
198+
- name: Report bundle size (nexus)
199+
uses: andresz1/size-limit-action@94bc357df29c36c8f8d50ea497c3e225c3c95d1d # v1.8.0
200+
with:
201+
github_token: ${{ secrets.GITHUB_TOKEN }}
202+
package_manager: pnpm
203+
directory: packages/nexus
2.06 MB
Loading

apps/dashboard/src/@/components/analytics/empty-chart-state.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ function SkeletonBarChart(props: {
9595
fill={`url(#${fillAreaSkeletonId})`}
9696
radius={8}
9797
stroke="hsl(var(--muted-foreground))"
98-
type="natural"
98+
type="monotone"
9999
/>
100100
</AreaChart>
101101
)}

apps/dashboard/src/@/components/blocks/charts/area-chart.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ export function ThirdwebAreaChart<TConfig extends ChartConfig>(
172172
key={key}
173173
stackId={props.variant !== "stacked" ? undefined : "a"}
174174
stroke={`var(--color-${key})`}
175-
type="natural"
175+
type="monotone"
176176
/>
177177
),
178178
)}

0 commit comments

Comments
 (0)