Revert "Seperator -> Separator"#827
Conversation
This reverts commit 3582499.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Pull Request Overview
This PR reverts the previous commit that corrected the spelling of "Separator" from "Seperator" across the codebase. It restores the original misspelling and updates imports to reference the misspelled filename.
- Reverts import statements to use "Seperator.tsx" instead of "Separator"
- Changes React component type reference from
ComponentRefback toElementRef
Reviewed Changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| packages/web/src/pages/Dashboard/index.tsx | Reverts import to use misspelled "Seperator.tsx" filename |
| packages/web/src/components/UI/Seperator.tsx | Changes React type reference from ComponentRef to ElementRef |
| packages/web/src/components/PageComponents/Map/NodeDetail.tsx | Reverts import to use misspelled "Seperator.tsx" filename |
| packages/web/src/components/Dialog/RebootDialog.tsx | Reverts import to use misspelled "Seperator.tsx" filename |
| packages/web/src/components/Dialog/NodeDetailsDialog/NodeDetailsDialog.tsx | Reverts import to use misspelled "Seperator.tsx" filename |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
| import LanguageSwitcher from "@components/LanguageSwitcher.tsx"; | ||
| import { Button } from "@components/UI/Button.tsx"; | ||
| import { Separator } from "@components/UI/Separator"; | ||
| import { Separator } from "@components/UI/Seperator.tsx"; |
There was a problem hiding this comment.
The filename "Seperator.tsx" contains a spelling error. It should be "Separator.tsx" (correct spelling of "Separator").
| import { Separator } from "@components/UI/Seperator.tsx"; | |
| import { Separator } from "@components/UI/Separator.tsx"; |
| import { TimeAgo } from "@components/generic/TimeAgo.tsx"; | ||
| import { Avatar } from "@components/UI/Avatar.tsx"; | ||
| import { Separator } from "@components/UI/Separator"; | ||
| import { Separator } from "@components/UI/Seperator.tsx"; |
There was a problem hiding this comment.
The filename "Seperator.tsx" contains a spelling error. It should be "Separator.tsx" (correct spelling of "Separator").
| import { Separator } from "@components/UI/Seperator.tsx"; | |
| import { Separator } from "@components/UI/Separator.tsx"; |
| import { Input } from "@components/UI/Input.tsx"; | ||
| import { Label } from "@components/UI/Label.tsx"; | ||
| import { Separator } from "@components/UI/Separator"; | ||
| import { Separator } from "@components/UI/Seperator.tsx"; |
There was a problem hiding this comment.
The filename "Seperator.tsx" contains a spelling error. It should be "Separator.tsx" (correct spelling of "Separator").
| import { Separator } from "@components/UI/Seperator.tsx"; | |
| import { Separator } from "@components/UI/Separator.tsx"; |
| DialogTitle, | ||
| } from "@components/UI/Dialog.tsx"; | ||
| import { Separator } from "@components/UI/Separator"; | ||
| import { Separator } from "@components/UI/Seperator.tsx"; |
There was a problem hiding this comment.
The filename "Seperator.tsx" contains a spelling error. It should be "Separator.tsx" (correct spelling of "Separator").
| import { Separator } from "@components/UI/Seperator.tsx"; | |
| import { Separator } from "@components/UI/Separator.tsx"; |
This reverts commit e421eb4.
* Reapply "Seperator -> Separator (#823)" (#827) This reverts commit e421eb4. * Rename new seperator * Update packages/web/src/components/Dialog/NodeDetailsDialog/NodeDetailsDialog.tsx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update packages/web/src/components/Dialog/RebootDialog.tsx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update packages/web/src/components/PageComponents/Map/NodeDetail.tsx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update packages/web/src/pages/Dashboard/index.tsx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: philon- <philon-@users.noreply.github.com> Co-authored-by: Dan Ditomaso <dan.ditomaso@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Reverts #823