apps/web: remove elements id's

This commit is contained in:
vchikalkin 2024-03-24 10:54:12 +03:00
parent ec32c0dea6
commit 50701b19b7
3 changed files with 3 additions and 3 deletions

View File

@ -46,7 +46,7 @@ const ComponentWrapper = styled.div`
function Form({ prune }) {
return (
<Wrapper id="form">
<Wrapper>
<Tabs type="card" tabBarGutter="5px">
{formTabs
.filter((tab) => !prune?.includes(tab.id))

View File

@ -28,7 +28,7 @@ export default function Settings() {
: renderFormRows(config.paramsRows);
return (
<Wrapper id="settings">
<Wrapper>
{mainRows}
{paramsRows}
</Wrapper>

View File

@ -58,7 +58,7 @@ const Output = observer(() => {
}, [$results.payments.length, hasErrors]);
return (
<Wrapper id="output">
<Wrapper>
<Tabs
items={items}
activeKey={activeKey}