Skip to content

Commit

Permalink
build: bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Majorfi committed May 10, 2024
1 parent 427b753 commit bba1101
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@yearn-finance/web-lib",
"version": "3.0.190",
"version": "3.0.191",
"main": "./dist/index.js",
"types": "./dist/index.d.js",
"files": [
Expand Down
6 changes: 4 additions & 2 deletions src/icons/IconLoader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,15 @@ export function IconLoader(props: React.SVGProps<SVGSVGElement>): ReactElement {
cy={'12'}
r={'10'}
stroke={'currentColor'}
strokeWidth={'4'}></circle>
strokeWidth={'4'}
/>
<path
className={'opacity-75'}
fill={'currentColor'}
d={
'M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z'
}></path>
}
/>
</svg>
);
}
8 changes: 6 additions & 2 deletions src/utils/schemas/yDaemonVaultsSchemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,17 @@ export const yDaemonVaultSchema = z.object({
description: z.string().default('').catch(''),
category: z
.literal('Curve')
.or(z.literal('Stablecoin'))
.or(z.literal('Aerodrome'))
.or(z.literal('Volatile'))
.or(z.literal('Balancer'))
.or(z.literal('Stablecoin'))
.or(z.literal('Velodrome'))
.or(z.literal('Prisma'))
.or(z.literal('Gamma'))
.or(z.literal('Pendle'))
.or(z.literal('Prisma'))
.or(z.literal('Boosted'))
.or(z.literal('Aerodrome'))
.or(z.string().min(1))
.default('Volatile')
.catch('Volatile'),
decimals: z.number(),
Expand Down

0 comments on commit bba1101

Please sign in to comment.