From aad33eaaa0850ff3cafbf646b758de19cd328879 Mon Sep 17 00:00:00 2001 From: Richard Ward Date: Tue, 30 Dec 2025 17:57:27 +0000 Subject: [PATCH] code: tsx,results,nextjs (1 files) --- .../ui/organisms/dialogs/Command/Results.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/frontends/nextjs/src/components/ui/organisms/dialogs/Command/Results.tsx b/frontends/nextjs/src/components/ui/organisms/dialogs/Command/Results.tsx index 709ccd939..f185345dd 100644 --- a/frontends/nextjs/src/components/ui/organisms/dialogs/Command/Results.tsx +++ b/frontends/nextjs/src/components/ui/organisms/dialogs/Command/Results.tsx @@ -1,10 +1,12 @@ 'use client' -import { Box, Typography } from '@mui/material' +import { Box } from '@/fakemui/fakemui/layout' +import { Typography } from '@/fakemui/fakemui/data-display' import { ReactNode } from 'react' import { CommandDialog } from '../command' import type { CommandGroup, CommandItem } from '../command/command.types' +import styles from './Results.module.scss' interface CommandResultsProps { groups: CommandGroup[] @@ -35,12 +37,12 @@ const CommandResults = ({ onSelect?.(item) }} > - - + + {item.label} {item.description && ( - + {item.description} )}