Skip to content

Commit add44ed

Browse files
authored
feat: Expand by default non True conditions (#3896)
1 parent fdff246 commit add44ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shared/components/ExpandableListItem/ExpandableListItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export const ExpandableListItem = ({
2727
customContent,
2828
}: ExpandableListItemProps) => {
2929
const { t } = useTranslation();
30-
const [expanded, setExpanded] = useState(false);
30+
const [expanded, setExpanded] = useState(status !== 'True');
3131

3232
let statusType;
3333
switch (status) {

0 commit comments

Comments
 (0)