Skip to content

Commit

Permalink
PLT-7515 create syncing state for newly created contract
Browse files Browse the repository at this point in the history
  • Loading branch information
ladamesny committed Sep 25, 2023
1 parent 70df685 commit 52fde6b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Component/ContractList.purs
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,11 @@ mkContractList = do
, tdInstant $ updatedAt <|> createdAt
, tdContractId contractId Nothing []
, tdCentered [ DOOM.text $ intercalate ", " tags ]
, tdCentered ([ DOOM.text "Placeholder - CREATED" ] :: Array JSX) -- FIXME: Withdrawals should be still possible
, tdCentered
( [ DOM.div { className: "border border-dark rounded bg-white text-dark d-inline-block py-2 px-3 fw-bold" } do
DOOM.text "Syncing"
] :: Array JSX
) -- FIXME: Withdrawals should be still possible
]
NotSyncedUpdatedContract { contractInfo } -> do
[ tdInstant createdAt
Expand Down

0 comments on commit 52fde6b

Please sign in to comment.