fix: typos in packages/hoppscotch-common/src/platform (#4855)
This commit is contained in:
parent
81f2dce531
commit
072c759cd0
4 changed files with 4 additions and 4 deletions
|
|
@ -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`) */
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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[]
|
||||
|
|
|
|||
Loading…
Reference in a new issue