Skip to content
Closed
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
26 changes: 13 additions & 13 deletions clients/apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
"node": "=24"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.70",
"@ai-sdk/anthropic": "^3.0.71",
"@ai-sdk/google": "^3.0.64",
"@ai-sdk/mcp": "^1.0.36",
"@ai-sdk/openai": "^3.0.53",
"@ai-sdk/react": "^3.0.169",
"@ai-sdk/react": "^3.0.170",
"@cloudflare/stream-react": "^1.9.3",
"@date-fns/utc": "^2.1.1",
"@dnd-kit/core": "^6.3.1",
Expand Down Expand Up @@ -54,14 +54,14 @@
"@shikijs/rehype": "^3.23.0",
"@stripe/react-stripe-js": "^4.0.2",
"@stripe/stripe-js": "^7.9.0",
"@stylexjs/stylex": "^0.18.2",
"@stylexjs/stylex": "^0.18.3",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/postcss": "^4.2.2",
"@tailwindcss/postcss": "^4.2.4",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/react-query": "^5.99.0",
"@tanstack/react-query": "^5.99.2",
"@tanstack/react-table": "^8.21.3",
"@vercel/blob": "^0.27.3",
"ai": "^6.0.167",
"ai": "^6.0.168",
"big.js": "^7.0.1",
"class-variance-authority": "^0.7.1",
"date-fns": "^4.1.0",
Expand All @@ -85,7 +85,7 @@
"react-dom": "19.2.5",
"react-dropzone": "^14.4.1",
"react-focus-lock": "^2.13.7",
"react-hook-form": "~7.72.1",
"react-hook-form": "~7.73.1",
"react-timeago": "^8.3.0",
"recharts": "^3.8.1",
"rehype-mdx-import-media": "^1.4.0",
Expand All @@ -104,25 +104,25 @@
"@playwright/test": "^1.59.1",
"@polar-sh/eslint-config": "workspace:*",
"@polar-sh/typescript-config": "workspace:*",
"@stylexjs/babel-plugin": "^0.18.2",
"@stylexjs/postcss-plugin": "^0.18.2",
"@stylexjs/babel-plugin": "^0.18.3",
"@stylexjs/postcss-plugin": "^0.18.3",
"@types/big.js": "^6.2.2",
"@types/dom-to-image": "^2.6.7",
"@types/mdx": "^2.0.13",
"@types/node": "^24.12.2",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/web": "^0.0.345",
"@types/web": "^0.0.347",
"@vitejs/plugin-react": "^5.2.0",
"@vitest/ui": "^4.1.4",
"@vitest/ui": "^4.1.5",
"autoprefixer": "^10.5.0",
"jsdom": "^27.4.0",
"postcss": "^8.5.10",
"remark": "^15.0.1",
"remark-mdx": "^3.1.1",
"tailwindcss": "^4.2.2",
"tailwindcss": "^4.2.4",
"typescript": "5.9.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.1.4"
"vitest": "^4.1.5"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ const StripeRequiresAction = ({
if (!stripe) {
return
}
// eslint-disable-next-line react-hooks/set-state-in-effect
handleNextAction(stripe)
}, [stripe, handleNextAction, pendingHandling])

Expand Down
1 change: 1 addition & 0 deletions clients/apps/web/src/components/Form/ImageUpload.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ const ImageUpload = ({
const [imagePreviewSrc, setImagePreviewSrc] = useState<string | undefined>()

useEffect(() => {
// eslint-disable-next-line react-hooks/set-state-in-effect
setImagePreviewSrc(defaultValue)
}, [defaultValue])

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export const BenefitSearchComplex = ({
}, [searchQuery])

useEffect(() => {
// eslint-disable-next-line react-hooks/set-state-in-effect
setIsDropdownOpen(debouncedQuery.trim().length > 0)
}, [debouncedQuery])

Expand Down Expand Up @@ -104,6 +105,7 @@ export const BenefitSearchComplex = ({
const searchResults = searchResultsQuery.data?.items ?? []

useEffect(() => {
// eslint-disable-next-line react-hooks/set-state-in-effect
setEnabledPage(1)
setAvailablePage(1)
}, [selectedBenefitIds.length])
Expand Down
2 changes: 1 addition & 1 deletion clients/apps/web/src/hooks/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const useDebouncedCallback = <T extends (...args: any[]) => any>(
callback(...args)
}, delay)
},
// eslint-disable-next-line react-hooks/exhaustive-deps
// eslint-disable-next-line react-hooks/exhaustive-deps, react-hooks/use-memo
[callback, delay, ...(dependencies ? dependencies : [])],
)
}
Expand Down
6 changes: 3 additions & 3 deletions clients/packages/checkout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@
"@testing-library/react": "^16.3.2",
"@types/react": "19.2.14",
"@vitejs/plugin-react": "^5.2.0",
"@vitest/coverage-v8": "^4.1.4",
"@vitest/coverage-v8": "^4.1.5",
"jsdom": "^27.4.0",
"react": "^19.2.5",
"terser": "^5.46.1",
"tsup": "^8.5.1",
"typescript": "latest",
"vitest": "^4.1.4",
"vitest": "^4.1.5",
"@polar-sh/currency": "workspace:^",
"@polar-sh/client": "workspace:*",
"@polar-sh/i18n": "workspace:*",
Expand All @@ -87,7 +87,7 @@
"event-source-plus": "^0.1.15",
"eventemitter3": "^5.0.4",
"markdown-to-jsx": "^8.0.0",
"react-hook-form": "~7.72.1"
"react-hook-form": "~7.73.1"
},
"dependencies": {
"date-fns": "^4.1.0"
Expand Down
2 changes: 1 addition & 1 deletion clients/packages/checkout/src/hooks/debounce.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const useDebouncedCallback = <T extends (...args: any[]) => any>(
callback(...args)
}, delay)
},
// eslint-disable-next-line react-hooks/exhaustive-deps
// eslint-disable-next-line react-hooks/exhaustive-deps, react-hooks/use-memo
[callback, delay, ...(dependencies ? dependencies : [])],
)
}
Expand Down
2 changes: 1 addition & 1 deletion clients/packages/currency/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"@polar-sh/typescript-config": "workspace:*",
"tsup": "^8.5.1",
"typescript": "latest",
"vitest": "^4.1.4"
"vitest": "^4.1.5"
},
"publishConfig": {
"access": "public"
Expand Down
4 changes: 2 additions & 2 deletions clients/packages/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
"@eslint/js": "^9.39.4",
"@next/eslint-plugin-next": "^16.2.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-turbo": "^2.9.6",
"globals": "^16.5.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.2"
"typescript-eslint": "^8.59.0"
}
}
4 changes: 2 additions & 2 deletions clients/packages/i18n/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@
"@polar-sh/eslint-config": "workspace:*",
"@polar-sh/typescript-config": "workspace:*",
"@types/react": "^19.2.14",
"ai": "^6.0.167",
"ai": "^6.0.168",
"dotenv": "^16.6.1",
"react": "^19.2.5",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "latest",
"vitest": "^4.1.4"
"vitest": "^4.1.5"
},
"peerDependencies": {
"react": "^19.2.4"
Expand Down
2 changes: 1 addition & 1 deletion clients/packages/orbit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@stylexjs/stylex": "^0.18.2",
"@stylexjs/stylex": "^0.18.3",
"@tanstack/react-table": "^8.21.3",
"class-variance-authority": "^0.7.1",
"framer-motion": "^12.38.0",
Expand Down
2 changes: 1 addition & 1 deletion clients/packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"input-otp": "^1.4.2",
"lucide-react": "^0.577.0",
"react-day-picker": "^9.14.0",
"react-hook-form": "~7.72.1",
"react-hook-form": "~7.73.1",
"react-timeago": "^8.3.0",
"recharts": "^3.8.1",
"tailwind-merge": "^3.5.0"
Expand Down
1 change: 1 addition & 0 deletions clients/packages/ui/src/hooks/use-mobile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export function useIsMobile() {
setIsMobile(window.innerWidth < MOBILE_BREAKPOINT)
}
mql.addEventListener('change', onChange)
// eslint-disable-next-line react-hooks/set-state-in-effect
setIsMobile(window.innerWidth < MOBILE_BREAKPOINT)
return () => mql.removeEventListener('change', onChange)
}, [])
Expand Down
Loading
Loading