-
Notifications
You must be signed in to change notification settings - Fork 131
New issue
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
fix: Missing typescript issue check #981
Conversation
Size Change: +70 B (0%) Total Size: 767 kB
ℹ️ View Unchanged
|
weird there's no error for me... I can run what error do you get? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
assuming the checks all pass....
@@ -619,7 +619,7 @@ export class SessionRecording { | |||
clearInterval(this._fullSnapshotTimer) | |||
} | |||
|
|||
this._fullSnapshotTimer = setInterval(() => { | |||
this._fullSnapshotTimer = window?.setInterval(() => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
feels like a safe enough change so 🚢
but definitely be good to understand why this works in CI, and on my machine, but not on yours
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's surprising... I will clear my local node_modules or something and try again...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah ha. The error went away!
Changes
Locally
pnpm build
errors with a TS issue. Trying to recreate on the CI so we can fix and figure out why it wasn't caught...Outcome: Couldn't figure out why it wasn't working but swapping to the window's setTimeout fixed it...
Checklist