Skip to content

Commit

Permalink
fix: card-network issue and calendly link removed
Browse files Browse the repository at this point in the history
  • Loading branch information
Riddhiagrawal001 committed Oct 22, 2024
1 parent d0070ac commit 9c844ec
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/screens/Home/ProdIntent/ProdVerifyModal.res
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ let make = (~showModal, ~setShowModal, ~initialValues=Dict.make(), ~getProdVerif

let onSubmit = (values, _) => {
setScreenState(_ => PageLoaderWrapper.Loading)
Window._open("https://calendar.app.google/U2xpGxE8zigYjeft5")
updateProdDetails(values)
}

Expand Down
7 changes: 6 additions & 1 deletion src/screens/Order/OrderUIUtils.res
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,12 @@ let initialFilters = (json, filtervalues) => {

let connectorFilter = filtervalues->getArrayFromDict("connector", [])->getStrArrayFromJsonArray

let filterDict = json->getDictFromJsonObject
// TODO: Remove the card-network delete once card-network issue is fixed
let filterDict =
json
->getDictFromJsonObject
->DictionaryUtils.deleteKeys(["card_network"])

let filterArr = filterDict->itemToObjMapper
let arr = filterDict->Dict.keysToArray

Expand Down

0 comments on commit 9c844ec

Please sign in to comment.