Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/libs/API/parameters/AcceptSpotnanaTermsParams.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
type AcceptSpotnanaTermsParams = {
domain?: string;
domainName?: string;
policyID?: string;
};

Expand Down
2 changes: 1 addition & 1 deletion src/libs/actions/Travel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function acceptSpotnanaTerms(domain?: string, policyID?: string) {
},
];

const params: AcceptSpotnanaTermsParams = {domain, policyID};
const params: AcceptSpotnanaTermsParams = {domainName: domain, policyID};

// We need to call this API immediately to get the response and open the travel page.
// See https://github.com/Expensify/App/pull/69769#discussion_r2368967354 for more info.
Expand Down
Loading