fix: create/edit panel shows a blank page (#2473)

This commit is contained in:
Chintan Sudani 2023-03-20 18:46:20 +05:30 committed by GitHub
parent 1ddda19c8e
commit 481792d4ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,8 +32,9 @@ function TimePreference({
return (
<TextContainer noButtonMargin>
<Dropdown menu={menu} />
<Button>{selectedTime.name}</Button>
<Dropdown menu={menu}>
<Button>{selectedTime.name}</Button>
</Dropdown>
</TextContainer>
);
}