We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
deno check
Version: Deno 2.1.6
deno check errors where TS is totally fine:
function getRadixesLS(): Radix[] | undefined {} function createRadixes(chars = defaultChars): Radix[] {} const [ radixes, setRadixes ] = useState(getRadixesLS() ?? createRadixes(getCharsLS())) ^^^^^^^ any - should be Radix[] const [ enabledRadixes, setEnabledRadixes ] = useState(radixes.filter(r => r.enabled))
I would guess that the problem would be in ??
https://github.com/kuchta/radixverse/blob/3bda8826a84cfc6622ae856e20e0d6aa4a6de031/src/components/App.tsx#L56
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Version: Deno 2.1.6
deno check
errors where TS is totally fine:I would guess that the problem would be in ??
https://github.com/kuchta/radixverse/blob/3bda8826a84cfc6622ae856e20e0d6aa4a6de031/src/components/App.tsx#L56
The text was updated successfully, but these errors were encountered: