-
Notifications
You must be signed in to change notification settings - Fork 515
Revert "Demo floating window" #692
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,7 +8,6 @@ export { StackTheme } from './providers/theme-provider'; | |
|
|
||
| export { AccountSettings } from "./components-page/account-settings"; | ||
| export { AuthPage } from "./components-page/auth-page"; | ||
| export { CliAuthConfirmation } from "./components-page/cli-auth-confirm"; | ||
| export { EmailVerification } from "./components-page/email-verification"; | ||
| export { ForgotPassword } from "./components-page/forgot-password"; | ||
| export { PasswordReset } from "./components-page/password-reset"; | ||
|
|
@@ -23,6 +22,5 @@ export { OAuthButton } from "./components/oauth-button"; | |
| export { OAuthButtonGroup } from "./components/oauth-button-group"; | ||
| export { SelectedTeamSwitcher } from "./components/selected-team-switcher"; | ||
| export { UserButton } from "./components/user-button"; | ||
|
|
||
| export { DemoFloatingWindow } from "./components/demo-floating-window"; | ||
| export { CliAuthConfirmation } from "./components-page/cli-auth-confirm"; | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This export statement references a non-existent module. The component 'CliAuthConfirmation' and its containing module './components-page/cli-auth-confirm' appear to be missing from the codebase. This will cause a module resolution error when any consumer tries to import this component. The bug was introduced by keeping an export for a module that doesn't exist in the project structure.
|
||
| // END_PLATFORM | ||
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.
The code could crash when calculating line indices if the body tag's position (bodyOpenEndIndex) extends beyond the total length of concatenated lines. The getLineIndex function throws an error in this case, which isn't caught by the caller. This can happen with malformed HTML or when body tags span multiple lines. The function should handle this edge case gracefully instead of throwing an error.