Skip to content

Commit

Permalink
minor typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
iresharma committed Aug 14, 2023
1 parent be3c5eb commit d0160ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const error_1 = __importDefault(require("../../../../error"));
const accountlinking_1 = __importDefault(require("../../../accountlinking"));
const recipeUserId_1 = __importDefault(require("../../../../recipeUserId"));
const userUnlink = async (_, ___, options, userContext) => {
const recipeUserId = options.req.getKeyValueFromQuery("recipeUserID");
const recipeUserId = options.req.getKeyValueFromQuery("recipeUserId");
if (recipeUserId === undefined) {
throw new error_1.default({
message: "Required field recipeUserId is missing",
Expand Down
2 changes: 1 addition & 1 deletion lib/ts/recipe/dashboard/api/userdetails/userUnlinkGet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const userUnlink = async (
options: APIOptions,
userContext: any
): Promise<Response> => {
const recipeUserId = options.req.getKeyValueFromQuery("recipeUserID");
const recipeUserId = options.req.getKeyValueFromQuery("recipeUserId");

if (recipeUserId === undefined) {
throw new STError({
Expand Down

0 comments on commit d0160ea

Please sign in to comment.