Skip to content

Commit

Permalink
chore: remove separator
Browse files Browse the repository at this point in the history
  • Loading branch information
amanharwara authored and karolsojko committed Dec 28, 2023
1 parent 453c289 commit c466e9d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import DecoratedInput from '@/Components/Input/DecoratedInput'
import Icon from '@/Components/Icon/Icon'
import { useApplication } from '../ApplicationProvider'
import ServerPicker from './ServerPicker/ServerPicker'
import HorizontalSeparator from '../Shared/HorizontalSeparator'

type Props = {
disabled?: boolean
Expand Down Expand Up @@ -195,7 +194,6 @@ const AdvancedOptions: FunctionComponent<Props> = ({
</>
)}
</div>
<HorizontalSeparator classes="my-2" />
<ServerPicker customServerAddress={server} handleCustomServerAddressChange={handleSyncServerChange} />
</>
) : null}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const ServerPicker = ({ className, customServerAddress, handleCustomServerAddres

return (
<div className={`flex h-full flex-grow flex-col px-3 pb-1.5 ${className}`}>
<div className="mb-2 mt-1 flex font-bold">Sync Server</div>
<div className="mb-2 flex font-bold">Sync Server</div>
<RadioButtonGroup value={currentType} items={options} onChange={selectTab} />
{currentType === 'custom' && (
<DecoratedInput
Expand Down

0 comments on commit c466e9d

Please sign in to comment.