mirror of
https://github.com/jeffvli/feishin.git
synced 2026-07-23 02:46:40 +02:00
disable single attribute per line
This commit is contained in:
@@ -94,10 +94,5 @@ export const CacheSettings = () => {
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
<SettingsSection
|
||||
divider={false}
|
||||
options={options}
|
||||
/>
|
||||
);
|
||||
return <SettingsSection divider={false} options={options} />;
|
||||
};
|
||||
|
||||
@@ -52,10 +52,5 @@ export const PasswordSettings = () => {
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
<SettingsSection
|
||||
divider={false}
|
||||
options={updateOptions}
|
||||
/>
|
||||
);
|
||||
return <SettingsSection divider={false} options={updateOptions} />;
|
||||
};
|
||||
|
||||
@@ -44,10 +44,5 @@ export const UpdateSettings = () => {
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
<SettingsSection
|
||||
divider={utils?.isLinux()}
|
||||
options={updateOptions}
|
||||
/>
|
||||
);
|
||||
return <SettingsSection divider={utils?.isLinux()} options={updateOptions} />;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user