fix: typos in packages/hoppscotch-common/src/platform (#4855)

This commit is contained in:
luzpaz 2025-03-10 03:23:42 -04:00 committed by GitHub
parent 81f2dce531
commit 072c759cd0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View file

@ -24,7 +24,7 @@ export type HoppUser = {
// Regarding `provider` and `accessToken`:
// The current implementation and use case for these 2 fields are super weird due to legacy.
// Currrently these fields are only basically populated for Github Auth as we need the access token issued
// Currently these fields are only basically populated for Github Auth as we need the access token issued
// by it to implement Gist submission. I would really love refactor to make this thing more sane.
/** Name of the provider authenticating (NOTE: See notes on `platform/auth.ts`) */

View file

@ -46,7 +46,7 @@ export type SaveFileResponse =
| {
/**
* The implementation was unable to determine the status of the save operation.
* This cannot be considered a success or a failure and should be handled as an uncertainity.
* This cannot be considered a success or a failure and should be handled as an uncertainty.
* The browser standard implementation (std) returns this value as there is no way to
* check if the user downloaded the file or not.
*/

View file

@ -241,7 +241,7 @@ export class ProxyKernelInterceptorService
? new Uint8Array(res.body.body)
: null
// NOTE: This will become obsolete if we use native interceptor like error propogation.
// NOTE: This will become obsolete if we use native interceptor like error propagation.
const proxyResponse = proxyBody
? (JSON.parse(
new TextDecoder().decode(proxyBody)

View file

@ -29,7 +29,7 @@ export type UIPlatformDef = {
onCodemirrorInstanceMount?: (element: HTMLElement) => void
/**
* Additonal menu items shown in the "Help and Feedback" menu
* Additional menu items shown in the "Help and Feedback" menu
* in the app footer.
*/
additionalFooterMenuItems?: HoppFooterMenuItem[]