merge-requests/3361/merge^2
Siddharth Singh 2025-03-31 23:23:20 +05:30
rodzic 2d4f12fc05
commit 4960a0f640
Nie znaleziono w bazie danych klucza dla tego podpisu
1 zmienionych plików z 6 dodań i 4 usunięć

Wyświetl plik

@ -18,10 +18,12 @@ const messages = defineMessages({
});
const Suggestion: FC<{ item: PolicyItem }> = ({ item }) => {
return (<Stack>
<div><strong className='text-lg'>{item.name}</strong></div>
<div>{item.description}</div>
</Stack>);
return (
<Stack>
<div><strong className='text-lg'>{item.name}</strong></div>
<div>{item.description}</div>
</Stack>
);
};
const getInputType = (type: FieldItem['type']) => {