Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix some typos in comments #7283

Merged
merged 1 commit into from
Apr 19, 2024
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 packages/insomnia-sdk/src/objects/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export interface OAuth2Param {
key: string;
value: string;
enabled: boolean;
send_as: string; // it follows exising naming
send_as: string; // it follows existing naming
}

export interface OAuth2Options {
Expand Down
2 changes: 1 addition & 1 deletion packages/insomnia-sdk/src/objects/cookies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ export function mergeCookieJar(
): InsomniaCookieJar {
const cookiesWithId = updatedCookieJar.cookies.map((cookie): InsomniaCookie => {
if (!cookie.id) {
// this follows the genration apporach in the `cookie-list.tsx`
// this follows the generation approach in the `cookie-list.tsx`
cookie.id = uuidv4();
}
return cookie as InsomniaCookie;
Expand Down
2 changes: 1 addition & 1 deletion packages/insomnia/src/sync/vcs/vcs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ export class VCS {
for (const key of Object.keys(stage)) {
const entry = stage[key];

// @ts-expect-error -- TSCONVERSION find out where this is coming from from the Stage union
// @ts-expect-error -- TSCONVERSION find out where this is coming from the Stage union
if (entry.deleted) {
continue;
}
Expand Down
Loading