Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
- name: Setup Biome
uses: biomejs/setup-biome@a9763ed3d2388f5746f9dc3e1a55df7f4609bc89 # v2.5.1
with:
version: 2.0.4
version: 2.0.6

- run: pnpm lint

Expand Down
2 changes: 1 addition & 1 deletion apps/dashboard/biome.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"$schema": "https://biomejs.dev/schemas/2.0.4/schema.json",
"$schema": "https://biomejs.dev/schemas/2.0.6/schema.json",
"extends": "//"
}
2 changes: 1 addition & 1 deletion apps/dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
"zod": "3.25.67"
},
"devDependencies": {
"@biomejs/biome": "2.0.4",
"@biomejs/biome": "2.0.6",
"@chakra-ui/cli": "^2.4.1",
"@chromatic-com/storybook": "4.0.0",
"@next/bundle-analyzer": "15.3.3",
Expand Down
2 changes: 1 addition & 1 deletion apps/dashboard/src/@/components/blocks/TWTable.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/** biome-ignore-all lint/a11y/useSemanticElements: FIXME */
"use client";

import {
Expand Down Expand Up @@ -164,7 +165,6 @@ export function TWTable<TRowData>(tableProps: TWTableProps<TRowData>) {
return (
<TableRow
key={row.id}
// biome-ignore lint/a11y/useSemanticElements: FIXME
role="group"
{...(tableProps.onRowClick
? {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/** biome-ignore-all lint/a11y/useSemanticElements: FIXME */
"use client";

import { CheckIcon, ChevronDownIcon, SearchIcon } from "lucide-react";
Expand Down Expand Up @@ -190,7 +191,6 @@ export const SelectWithSearch = React.forwardRef<
ref={
i === optionsToShow.length - 1 ? lastItemRef : undefined
}
// biome-ignore lint/a11y/useSemanticElements: TDOO
role="option"
variant="ghost"
>
Expand Down
24 changes: 11 additions & 13 deletions apps/dashboard/src/@/components/connect-wallet/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,20 +120,18 @@ export const CustomConnectWallet = (props: {

if ((!isLoggedIn || !account) && loginRequired) {
return (
<>
<Button
asChild
className={props.signInLinkButtonClassName}
size="lg"
variant="default"
<Button
asChild
className={props.signInLinkButtonClassName}
size="lg"
variant="default"
>
<Link
href={`/login${pathname ? `?next=${encodeURIComponent(pathname)}` : ""}`}
>
<Link
href={`/login${pathname ? `?next=${encodeURIComponent(pathname)}` : ""}`}
>
Connect Wallet
</Link>
</Button>
</>
Connect Wallet
</Link>
</Button>
);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ const NetworkFilterCell = React.memo(function NetworkFilterCell({
client: ThirdwebClient;
}) {
if (chainIds.length < 2) {
return <> NETWORK </>;
return "NETWORK";
}

return (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// biome-ignore-all lint/nursery/noNestedComponentDefinitions: TODO
/** biome-ignore-all lint/a11y/useSemanticElements: FIXME */

import {
IconButton,
Expand Down Expand Up @@ -256,7 +257,6 @@ export const MarketplaceTable: React.FC<MarketplaceTableProps> = ({
// biome-ignore lint/suspicious/noArrayIndexKey: FIXME
key={rowIndex}
onClick={() => setTokenRow(row.original)}
// biome-ignore lint/a11y/useSemanticElements: FIXME
role="group"
style={{ cursor: "pointer" }}
>
Expand Down
Loading
Loading