Skip to content

Commit

Permalink
Merge pull request #287 from us3r-network/F-nodeAsService-bufan
Browse files Browse the repository at this point in the history
remove sqlite from node db type
  • Loading branch information
sin-bufan authored Jan 5, 2024
2 parents 9e36bd8 + 726b440 commit 17fa404
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 17fa404

Please sign in to comment.