{children}
diff --git a/src/lib/seam/use-seam-styles.ts b/src/lib/seam/use-seam-styles.ts
deleted file mode 100644
index 7e13a43fa..000000000
--- a/src/lib/seam/use-seam-styles.ts
+++ /dev/null
@@ -1,31 +0,0 @@
-import { useEffect } from 'react'
-
-import version from 'lib/version.js'
-
-const origin = 'https://react.seam.co'
-
-export const useSeamStyles = ({
- disabled = false,
- unminified = false,
-}: {
- unminified?: boolean
- disabled?: boolean
-}) => {
- const ext = `${unminified ? '' : 'min.'}css`
- const cssUrl = `${origin}/v/${version ?? ''}/index.${ext}`
-
- useEffect(() => {
- if (version === null) return
- if (disabled) return
- if (globalThis.document == null) return
-
- const linkEl = globalThis.document.querySelector(`link[href="${cssUrl}"]`)
- if (linkEl != null) return
-
- const link = globalThis.document.createElement('link')
- link.rel = 'stylesheet'
- link.type = 'text/css'
- link.href = cssUrl
- globalThis.document.head.appendChild(link)
- }, [disabled, cssUrl])
-}
diff --git a/test/fixtures/react.tsx b/test/fixtures/react.tsx
index 31479aa41..efe31bc32 100644
--- a/test/fixtures/react.tsx
+++ b/test/fixtures/react.tsx
@@ -19,7 +19,6 @@ function Providers({ children }: PropsWithChildren): JSX.Element {
endpoint={globalThis.JEST_SEAM_ENDPOINT}
publishableKey={globalThis.JEST_SEAM_PUBLISHABLE_KEY_1}
userIdentifierKey='some_user'
- disableCssInjection
disableFontInjection
>
{children}