Skip to content

Commit

Permalink
remove sqlite from node db type
Browse files Browse the repository at this point in the history
  • Loading branch information
sin-bufan committed Jan 5, 2024
1 parent 6ec5cf4 commit 726b440
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default function CreateCeramicNodeModal ({
const [network, setNetwork] = useState<CeramicNetwork>(
fixedNetwork || CeramicNetwork.TESTNET
)
const [dbType, setDbType] = useState<CeramicDBType>(CeramicDBType.SQLITE)
const [dbType, setDbType] = useState<CeramicDBType>(CeramicDBType.PGSQL)
const [historicalSync, setHistoricalSync] = useState<boolean | undefined>(
true
)
Expand Down Expand Up @@ -90,7 +90,8 @@ export default function CreateCeramicNodeModal ({
<EnumSelect
{...{ value: dbType, setValue: setDbType }}
labelText='* DB Type:'
values={[CeramicDBType.PGSQL, CeramicDBType.SQLITE]}
// values={[CeramicDBType.PGSQL, CeramicDBType.SQLITE]}
values={[CeramicDBType.PGSQL]}
/>
<Checkbox isSelected={historicalSync} onChange={setHistoricalSync}>
<div className='checkbox' aria-hidden='true'>
Expand Down

0 comments on commit 726b440

Please sign in to comment.