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

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
Signed-off-by: Kerry Archibald <[email protected]>
  • Loading branch information
Kerry Archibald committed Jan 25, 2022
1 parent 1944ef4 commit e816cc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/views/settings/UiFeatureSettingWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ interface IProps {
}
const UiFeatureSettingWrapper: React.FC<IProps> = ({ children, uiFeature }) => {
const settingValue = SettingsStore.getValue(uiFeature);
return settingValue && children ? <>{children}</> : null;
return settingValue && children ? <>{ children }</> : null;
};

export default UiFeatureSettingWrapper;

0 comments on commit e816cc8

Please sign in to comment.