Skip to content

Commit

Permalink
Merge pull request #30647 from Expensify/georgia-fix-revealDetails
Browse files Browse the repository at this point in the history
Fix incorrect command name for RevealDetails button
  • Loading branch information
luacmartins authored Oct 31, 2023
2 parents c64c1c5 + 4d065b0 commit 5fb5ff8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/actions/Card.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ function clearCardListErrors(cardID) {
function revealVirtualCardDetails(cardID) {
return new Promise((resolve, reject) => {
// eslint-disable-next-line rulesdir/no-api-side-effects-method
API.makeRequestWithSideEffects('RevealVirtualCardDetails', {cardID})
API.makeRequestWithSideEffects('RevealExpensifyCardDetails', {cardID})
.then((response) => {
if (response.jsonCode !== CONST.JSON_CODE.SUCCESS) {
reject();
Expand Down

0 comments on commit 5fb5ff8

Please sign in to comment.