Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit e816cc8

Browse files
author
Kerry Archibald
committed
lint fix
Signed-off-by: Kerry Archibald <[email protected]>
1 parent 1944ef4 commit e816cc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/views/settings/UiFeatureSettingWrapper.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ interface IProps {
2424
}
2525
const UiFeatureSettingWrapper: React.FC<IProps> = ({ children, uiFeature }) => {
2626
const settingValue = SettingsStore.getValue(uiFeature);
27-
return settingValue && children ? <>{children}</> : null;
27+
return settingValue && children ? <>{ children }</> : null;
2828
};
2929

3030
export default UiFeatureSettingWrapper;

0 commit comments

Comments
 (0)