Ada Boese

Results 31 comments of Ada Boese

Can confirm that pinning v9.15 fixes my issue as well. ``` const window = new Window(); const document = new window.DOMParser().parseFromString(`<html>`, 'text/html'); document.documentElement.outerHTML ``` Expecting output to be `<html>`, but...

At a glance, https://github.com/mgcrea/fastify-session-redis-store/blob/master/src/RedisStore.ts looks like it is better implemented.

Could not get @fastify/session to work despite trying for ours. Things like destroying session do not work. TypeScript types are confusing. It is possible that this was an issue with...

Does this mean footnotes were added?

I migrated to https://github.com/chakra-ui/ark

Doesn't look great, but it works: ```ts app.all('*', async (request, reply) => { try { const handler = createRequestHandler({ // https://github.com/remix-run/remix/issues/8343#issuecomment-1867179525 // eslint-disable-next-line @typescript-eslint/prefer-ts-expect-error // @ts-ignore - expected type mismatch...

> Yeah, is there any specific reason for not using @ts-expect-error directly instead of needing two comments? Because `await import('../../build/server')` is not going to trigger an error if there is...

I think the first use of `@ts-ignore` could be changed to `@ts-expect-error` though

Getting this when using `@sentry/react`. ```ts import { captureRemixErrorBoundaryError, withSentry } from '@sentry/remix'; const Root = () => {}; const RootWithSentry = withSentry(Root); export default Root; ```