Skip to content

Commit

Permalink
fix migration screen
Browse files Browse the repository at this point in the history
  • Loading branch information
vovakulikov committed Oct 22, 2024
1 parent d9cfafe commit c8e4317
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions vscode/webviews/chat/components/WelcomeMessage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const WelcomeMessage: FunctionComponent<WelcomeMessageProps> = ({

return (
<div className="tw-flex-1 tw-flex tw-flex-col tw-items-start tw-w-full tw-px-6 tw-gap-4 tw-transition-all">
{isUnifiedPromptsEnabled && <PromptMigrationWidget dismissible={true} />}
{isUnifiedPromptsEnabled && <PromptMigrationWidget dismissible={true} className="tw-w-full"/>}
<div className="tw-flex tw-flex-col tw-gap-4 tw-w-full">
<PromptList
showSearch={false}
Expand All @@ -34,7 +34,6 @@ export const WelcomeMessage: FunctionComponent<WelcomeMessageProps> = ({
showPromptLibraryUnsupportedMessage={false}
showOnlyPromptInsertableCommands={false}
includeEditCommandOnTop={true}
className="tw-w-full"
onSelect={item => runAction(item, setView)}
/>

Expand Down

0 comments on commit c8e4317

Please sign in to comment.