diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e1e561d..b34d304 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -20,7 +20,9 @@ export default function RootLayout({ }>) { return ( - {children} + + {children} + ) } diff --git a/src/components/ui/CopilotSelector.tsx b/src/components/ui/CopilotSelector.tsx index 6101d6e..d683dd7 100644 --- a/src/components/ui/CopilotSelector.tsx +++ b/src/components/ui/CopilotSelector.tsx @@ -19,6 +19,8 @@ export const CopilotSelector = ({ }: CopilotSelectorProps) => { if (typeof window !== 'undefined') return ( + // Note: if in case the UI responsive issue does not work in the future, need to create a custom react portal and wrap this component with it. + // Since we are using the same input field given by this selector component for now, need to create a separate input field for this implementation
{ const { openDialog, setOpenDialog, handleRemoveSync, openConfirmDialog } = useRemoveChannelSync() return ( -
- - - - {columns.map((column) => ( - - ))} - - - - - -
- {column.title} -
+
+
+ + + + {columns.map((column) => ( + + ))} + + + + + +
+ {column.title} +
+
{openDialog && (