void;
/** OAuth2 previous/ last fetched token */
diff --git a/platform/firecamp-ui/src/components/dropdown/Dropdown.stories.tsx b/platform/firecamp-ui/src/components/dropdown/Dropdown.stories.tsx
index b7ffcfa5..1e516944 100644
--- a/platform/firecamp-ui/src/components/dropdown/Dropdown.stories.tsx
+++ b/platform/firecamp-ui/src/components/dropdown/Dropdown.stories.tsx
@@ -86,7 +86,7 @@ const Template = (args) => {
}]
}
onSelect={item => {
- setSelected(item.name || 'oopss...')
+ setSelected(item.name || 'oops...')
}} />
)
diff --git a/platform/firecamp-ui/src/components/dropdown/Dropdown.test.tsx b/platform/firecamp-ui/src/components/dropdown/Dropdown.test.tsx
index bd17164b..64bdbccb 100644
--- a/platform/firecamp-ui/src/components/dropdown/Dropdown.test.tsx
+++ b/platform/firecamp-ui/src/components/dropdown/Dropdown.test.tsx
@@ -84,7 +84,7 @@ const DropDownDemo = (args: any) => {
hasDivider={true}
options={DropDownDemoArgs.options}
onSelect={item => {
- setSelected(item.name || 'oopss...')
+ setSelected(item.name || 'oops...')
}} />
)
diff --git a/platform/firecamp-ui/src/components/dropdown/Dropdown.tsx b/platform/firecamp-ui/src/components/dropdown/Dropdown.tsx
index 177bad56..9d9c95f0 100644
--- a/platform/firecamp-ui/src/components/dropdown/Dropdown.tsx
+++ b/platform/firecamp-ui/src/components/dropdown/Dropdown.tsx
@@ -154,7 +154,7 @@ const Options: FC
= ({
{headerMeta?.postfix ? headerMeta.postfix() : ''}
,
- // Oprion list, show empty mes
+ // Option list, show empty mes
option?.list?.length
? option?.list?.map((item, i) => {
return (
diff --git a/platform/firecamp-ui/src/components/dropdown/interfaces/Dropdown.interfaces.ts b/platform/firecamp-ui/src/components/dropdown/interfaces/Dropdown.interfaces.ts
index 976e05e2..f897d20e 100644
--- a/platform/firecamp-ui/src/components/dropdown/interfaces/Dropdown.interfaces.ts
+++ b/platform/firecamp-ui/src/components/dropdown/interfaces/Dropdown.interfaces.ts
@@ -62,7 +62,7 @@ export interface IOptions {
*/
hasDivider?: boolean;
/**
- * Boolean value to show options in upppercase
+ * Boolean value to show options in uppercase
*/
applyUpperCase?: boolean;
/**
@@ -170,7 +170,7 @@ export interface IItem {
*/
export interface IHeaderMeta {
/**
- * Boolean value to show header in upppercase
+ * Boolean value to show header in uppercase
*/
applyUpperCase?: boolean;
/**
diff --git a/platform/firecamp-ui/src/components/editors/cm-gql-editor/CMGQueryEditor.interfaces.ts b/platform/firecamp-ui/src/components/editors/cm-gql-editor/CMGQueryEditor.interfaces.ts
index 4357ccf8..ccbe4a0e 100644
--- a/platform/firecamp-ui/src/components/editors/cm-gql-editor/CMGQueryEditor.interfaces.ts
+++ b/platform/firecamp-ui/src/components/editors/cm-gql-editor/CMGQueryEditor.interfaces.ts
@@ -1,5 +1,5 @@
//@ts-ignore // TODO: install graphql as devDep type package
-import { GraphQLSchema } from 'graghql';
+import { GraphQLSchema } from 'graphql';
export interface ICMGQueryEditor {
/**
* Editor query string
diff --git a/platform/firecamp-ui/src/components/editors/cm-gql-editor/CMGQueryEditor.tsx b/platform/firecamp-ui/src/components/editors/cm-gql-editor/CMGQueryEditor.tsx
index 849d3558..12c3af8f 100644
--- a/platform/firecamp-ui/src/components/editors/cm-gql-editor/CMGQueryEditor.tsx
+++ b/platform/firecamp-ui/src/components/editors/cm-gql-editor/CMGQueryEditor.tsx
@@ -89,7 +89,7 @@ const CMGQueryEditor: FC = ({
gutters: ['CodeMirror-linenumbers', 'CodeMirror-foldgutter']
}}
onChange={(editor, data, value) => {
- // console.log("editor chnage", data, value);
+ // console.log("editor change", data, value);
// onChangeQuery(value)
}}
onKeyUp={(editor: any, e: any) => {
diff --git a/platform/firecamp-ui/src/components/editors/monaco-v2/SingleLineEditor.tsx b/platform/firecamp-ui/src/components/editors/monaco-v2/SingleLineEditor.tsx
index cd7c1cdf..9c25b8a9 100644
--- a/platform/firecamp-ui/src/components/editors/monaco-v2/SingleLineEditor.tsx
+++ b/platform/firecamp-ui/src/components/editors/monaco-v2/SingleLineEditor.tsx
@@ -308,7 +308,7 @@ const SingleLineEditor: FC = ({
scrollbar: {
horizontal: 'hidden',
vertical: 'hidden',
- // avoid can not scroll page when hover monaco
+ // avoid cannot scroll page when hover monaco
alwaysConsumeMouseWheel: false,
},
// disable `Find`
@@ -354,7 +354,7 @@ const SingleLineEditor: FC = ({
value = type === 'number' ? '' + value : value;
/**
* 1. Check if number or not, if number then convert to string and show
- * 2. Convert multiline string in to single line
+ * 2. Convert multiline string into single line
*/
// value = value.replace(/[\n\r]/g, '');
diff --git a/platform/firecamp-ui/src/components/editors/monaco-v2/lang/editor.hover-provider.ts b/platform/firecamp-ui/src/components/editors/monaco-v2/lang/editor.hover-provider.ts
index 80d152f5..4b044b4a 100644
--- a/platform/firecamp-ui/src/components/editors/monaco-v2/lang/editor.hover-provider.ts
+++ b/platform/firecamp-ui/src/components/editors/monaco-v2/lang/editor.hover-provider.ts
@@ -65,7 +65,7 @@ export default (variables, scopes = { workspace: [], project: [] }) => ({
let v = {
sample: previewVar,
scope: 'Mock Variable',
- descriton: 'This value can be changes on runtime',
+ description: 'This value can be changes on runtime',
};
// let sv = JSON.stringify(v, 2, 2);
// previewSliceOne = { value: '```js \n' + sv + '\n ```', supportThemeIcons: true };
diff --git a/platform/firecamp-ui/src/components/editors/monaco-v2/lang/editor.lang-text.ts b/platform/firecamp-ui/src/components/editors/monaco-v2/lang/editor.lang-text.ts
index 37f2bc1d..f9b53f32 100644
--- a/platform/firecamp-ui/src/components/editors/monaco-v2/lang/editor.lang-text.ts
+++ b/platform/firecamp-ui/src/components/editors/monaco-v2/lang/editor.lang-text.ts
@@ -55,7 +55,7 @@ export default {
// [/[;,.]/, "delimiter"],
// // strings
// [/"([^"\\]|\\.)*$/, "string.invalid"],
- // // non-teminated string
+ // // non-terminated string
// [/"/, { token: "string.quote", bracket: "@open", next: "@string" }],
// // characters
// [/'[^\\']'/, "string"],
diff --git a/platform/firecamp-ui/src/components/editors/monaco/components/FirecampEditor.tsx b/platform/firecamp-ui/src/components/editors/monaco/components/FirecampEditor.tsx
index 095e1c23..827cb135 100644
--- a/platform/firecamp-ui/src/components/editors/monaco/components/FirecampEditor.tsx
+++ b/platform/firecamp-ui/src/components/editors/monaco/components/FirecampEditor.tsx
@@ -165,7 +165,7 @@ const FirecampEditor: FC = ({
let _controlFns = {
copy: () => {
- // cusotm copy code here
+ // custom copy code here
try {
if (editorRef.current) {
let text = editorRef.current.getValue();
diff --git a/platform/firecamp-ui/src/components/editors/monaco/components/SingleLineIFE.tsx b/platform/firecamp-ui/src/components/editors/monaco/components/SingleLineIFE.tsx
index b02e3e72..79da5b61 100644
--- a/platform/firecamp-ui/src/components/editors/monaco/components/SingleLineIFE.tsx
+++ b/platform/firecamp-ui/src/components/editors/monaco/components/SingleLineIFE.tsx
@@ -42,7 +42,7 @@ const SingleLineIFE: FC = ({
}, []);
useEffect(() => {
- // console.log("I am rednding too often....");
+ // console.log("I am rendering too often....");
});
let _onMount = (edt: any, monaco: any) => {
@@ -85,7 +85,7 @@ const SingleLineIFE: FC = ({
et.setSelection(range);
et.focus();
} else {
- //todo: this is experimental, if no Editor ref found then blur it naturaly with Browser DOM API
+ //todo: this is experimental, if no Editor ref found then blur it naturally with Browser DOM API
document.activeElement.blur();
document.activeElement.blur();
document.activeElement.blur();
@@ -149,7 +149,7 @@ const SingleLineIFE: FC = ({
et.setSelection(range);
et.focus();
} else {
- //todo: this is experimental, if no Editor ref found then blur it naturaly with Browser DOM API
+ //todo: this is experimental, if no Editor ref found then blur it naturally with Browser DOM API
document.activeElement.blur();
document.activeElement.blur();
document.activeElement.blur();
@@ -275,7 +275,7 @@ const SingleLineIFE: FC = ({
value:
/**
* 1. Check if number or not, if number then convert to string and show
- * 2. Convert multiline string in to single line
+ * 2. Convert multiline string into single line
*/
(
'' + (type === 'number' ? value.toString() || '' : value || '')
diff --git a/platform/firecamp-ui/src/components/editors/monaco/sampleSchema.ts b/platform/firecamp-ui/src/components/editors/monaco/sampleSchema.ts
index 087af112..31b85866 100644
--- a/platform/firecamp-ui/src/components/editors/monaco/sampleSchema.ts
+++ b/platform/firecamp-ui/src/components/editors/monaco/sampleSchema.ts
@@ -39,7 +39,7 @@ export default {
},
{
name: 'limit',
- description: 'limit the nuber of rows returned',
+ description: 'limit the number of rows returned',
type: {
kind: 'SCALAR',
name: 'Int',
@@ -130,7 +130,7 @@ export default {
},
{
name: 'limit',
- description: 'limit the nuber of rows returned',
+ description: 'limit the number of rows returned',
type: {
kind: 'SCALAR',
name: 'Int',
@@ -9261,7 +9261,7 @@ export default {
},
{
name: 'limit',
- description: 'limit the nuber of rows returned',
+ description: 'limit the number of rows returned',
type: {
kind: 'SCALAR',
name: 'Int',
@@ -9352,7 +9352,7 @@ export default {
},
{
name: 'limit',
- description: 'limit the nuber of rows returned',
+ description: 'limit the number of rows returned',
type: {
kind: 'SCALAR',
name: 'Int',
diff --git a/platform/firecamp-ui/src/components/grid/Column.tsx b/platform/firecamp-ui/src/components/grid/Column.tsx
index 1cab076e..3dcc9d5a 100644
--- a/platform/firecamp-ui/src/components/grid/Column.tsx
+++ b/platform/firecamp-ui/src/components/grid/Column.tsx
@@ -1,4 +1,4 @@
-//@ts-nocheckh
+//@ts-nocheck
import { FC } from 'react';
import cx from 'classnames';
import { IColumn } from './interfaces/Column.interfaces';
diff --git a/platform/firecamp-ui/src/components/grid/RootContainer.tsx b/platform/firecamp-ui/src/components/grid/RootContainer.tsx
index 3a3d0ec0..c805ed68 100644
--- a/platform/firecamp-ui/src/components/grid/RootContainer.tsx
+++ b/platform/firecamp-ui/src/components/grid/RootContainer.tsx
@@ -9,7 +9,7 @@ import { IRootContainer } from "./interfaces/RootContainer.interfaces"
* Container
* @param id: // copy button id
* @param className: ,
- * @param children: // If user needs to pass childern
+ * @param children: // If user needs to pass children
* @param style:
* @returns {*}
* @constructor
diff --git a/platform/firecamp-ui/src/components/help-and-support/interfaces/Help.interfaces.ts b/platform/firecamp-ui/src/components/help-and-support/interfaces/Help.interfaces.ts
index 0526f3fd..6cdbbd24 100644
--- a/platform/firecamp-ui/src/components/help-and-support/interfaces/Help.interfaces.ts
+++ b/platform/firecamp-ui/src/components/help-and-support/interfaces/Help.interfaces.ts
@@ -1,6 +1,6 @@
export interface IHelp {
/**
- * Feature documenation link
+ * Feature documentation link
*/
docLink? : string
/**
diff --git a/platform/firecamp-ui/src/components/popover/interfaces/ConfirmationPopover.interfaces.ts b/platform/firecamp-ui/src/components/popover/interfaces/ConfirmationPopover.interfaces.ts
index 1f3f8e80..7d8075ec 100644
--- a/platform/firecamp-ui/src/components/popover/interfaces/ConfirmationPopover.interfaces.ts
+++ b/platform/firecamp-ui/src/components/popover/interfaces/ConfirmationPopover.interfaces.ts
@@ -46,7 +46,7 @@ export interface IConfirmationPopover {
onConfirm?: () => void;
/**
- * To toggle the the confirmation display as open/close & need to pass detach as false
+ * To toggle the confirmation display as open/close & need to pass detach as false
*/
isOpen?: boolean;
diff --git a/platform/firecamp-ui/src/components/response/tabs/Tabs.tsx b/platform/firecamp-ui/src/components/response/tabs/Tabs.tsx
index c4800606..c352fbd9 100644
--- a/platform/firecamp-ui/src/components/response/tabs/Tabs.tsx
+++ b/platform/firecamp-ui/src/components/response/tabs/Tabs.tsx
@@ -138,7 +138,7 @@ const Tabs: FC = ({
export default Tabs;
const ScriptErrors = ({ errors = [] }) => {
- console.log(errors, 'erros..... errors');
+ console.log(errors, 'errors..... errors');
return (
{errors.map((e, i) => (
diff --git a/platform/firecamp-ui/src/components/scripts/ScriptTab.tsx b/platform/firecamp-ui/src/components/scripts/ScriptTab.tsx
index bb14bb34..fb4ca517 100644
--- a/platform/firecamp-ui/src/components/scripts/ScriptTab.tsx
+++ b/platform/firecamp-ui/src/components/scripts/ScriptTab.tsx
@@ -25,7 +25,7 @@ const ScriptTab: FC
= ({
- Pre-request script are written in Javascript and are run before the
+ Pre-request script are written in JavaScript and are run before the
request is sent.
{/* Learn more about
{
//table column resize logic : column width is updating along with resizer div's offsetLeft value
const resizerElement = columnResizer[moveElementWidthIndex];
- const intialColumnWidth = parseInt(
+ const initialColumnWidth = parseInt(
resizerElement.parentElement.style.minWidth
);
const columnMouseMoveOffset = [
@@ -159,7 +159,7 @@ describe('Table : ', () => {
resizerElement.parentElement.style.minWidth
);
- expect(updatedColumnWidth).toBeGreaterThan(intialColumnWidth);
+ expect(updatedColumnWidth).toBeGreaterThan(initialColumnWidth);
}
});
diff --git a/platform/firecamp-ui/src/components/table/basic-table/Table.stories.mdx b/platform/firecamp-ui/src/components/table/basic-table/Table.stories.mdx
index 6103c00d..3f59f343 100644
--- a/platform/firecamp-ui/src/components/table/basic-table/Table.stories.mdx
+++ b/platform/firecamp-ui/src/components/table/basic-table/Table.stories.mdx
@@ -9,7 +9,7 @@ Table : To create custom table, in which primitive/Table is core component
#### **Component Usage**:
-To use exisitng BasicTable component
+To use existing BasicTable component
- Create columns[ ] for table & provide as prop to
diff --git a/platform/firecamp-ui/src/components/table/multipart-table/MultipartTable.test.tsx b/platform/firecamp-ui/src/components/table/multipart-table/MultipartTable.test.tsx
index 2d8937b3..3e4a48b6 100644
--- a/platform/firecamp-ui/src/components/table/multipart-table/MultipartTable.test.tsx
+++ b/platform/firecamp-ui/src/components/table/multipart-table/MultipartTable.test.tsx
@@ -49,7 +49,7 @@ describe('Table : ', () => {
expect(updatedMountedRow).toHaveLength(initialMountedRow.length + 1);
});
- test('Table should render components based on column id provied', async () => {
+ test('Table should render components based on column id provided', async () => {
// ColumnId - value : MultipartInput component
// validate the icon & checking its icon click event
// validate the icon input fields available based on type update
diff --git a/platform/firecamp-ui/src/components/table/primitive/table.interfaces.ts b/platform/firecamp-ui/src/components/table/primitive/table.interfaces.ts
index 730a2538..76835727 100644
--- a/platform/firecamp-ui/src/components/table/primitive/table.interfaces.ts
+++ b/platform/firecamp-ui/src/components/table/primitive/table.interfaces.ts
@@ -3,7 +3,7 @@ import { FocusEventHandler, MouseEventHandler, ReactNode } from 'react';
/** Table options */
export interface ITableOptions {
- /** disabled column's keys. One can not edit within the column included in to disabledColumns */
+ /** disabled column's keys. One cannot edit within the column included in disabledColumns */
disabledColumns?: Array;
/** a boolean value whether allow to remove row or not */
diff --git a/platform/firecamp-ui/src/components/tabs/interfaces/SecondaryTab.interfaces.ts b/platform/firecamp-ui/src/components/tabs/interfaces/SecondaryTab.interfaces.ts
index 68872b95..6583a4c8 100644
--- a/platform/firecamp-ui/src/components/tabs/interfaces/SecondaryTab.interfaces.ts
+++ b/platform/firecamp-ui/src/components/tabs/interfaces/SecondaryTab.interfaces.ts
@@ -12,7 +12,7 @@ export interface ISecondaryTab {
*/
activeTab?: string;
/**
- * Boolean value if you wnat to set tab background transpetant or not
+ * Boolean value if you wnat to set tab background transparent or not
*/
isBgTransparent?: boolean;
/**
diff --git a/platform/firecamp-ui/src/stories/DesignClasses.stories.mdx b/platform/firecamp-ui/src/stories/DesignClasses.stories.mdx
index e664d958..5a390528 100644
--- a/platform/firecamp-ui/src/stories/DesignClasses.stories.mdx
+++ b/platform/firecamp-ui/src/stories/DesignClasses.stories.mdx
@@ -52,8 +52,8 @@ import { Meta, ColorPalette, ColorItem } from '@storybook/addon-docs';
| .fc-empty.center-block | to update the display as flex |
| .request-tab-wrapper | to update the width |
| .fc-urlbar-path,.fc-tab-panel-info > span,.fc-history-req-list-item-url-text,.collection_leaf-node-name | to update the text for user selection |
-| .expandable-right-pane | to add the transform propertyy for right pane |
-| .expandable-right-pane.expanded | to update the tranformation of scaleX property |
+| .expandable-right-pane | to add the transform property for right pane |
+| .expandable-right-pane.expanded | to update the transformation of scaleX property |
| .dropzone-wrapper > .dropzone | to update the display for dropzone |
| Classname [themes preview] | Description |
@@ -71,7 +71,7 @@ import { Meta, ColorPalette, ColorItem } from '@storybook/addon-docs';
| ------------------------------------------------------------------- | ------------------------------------------------------------------ |
| .fc-form label | to set the size of all form label |
| .fc-form .row>label | to update the padding right for label in row parent |
-| .grid.fc-form > div > label | to update the styles for label exisitng within grid parent element |
+| .grid.fc-form > div > label | to update the styles for label existing within grid parent element |
| .fc-form-field-group | to update the preview for label text |
| .fc-form-field-group span | to update the preview for span text wrapped in label element |
| .fc-form input,.fc-form select | to set the styles for form input & select element |
@@ -96,7 +96,7 @@ import { Meta, ColorPalette, ColorItem } from '@storybook/addon-docs';
| .table.border-0 .table-row .table-cell:first-child | to remove the border left |
| .table.border-0 .table-row .table-cell:last-child | to remove the border right |
| -- | -- |
-| .response-headers-table,.response-cookies-table | to update display propterty as table |
+| .response-headers-table,.response-cookies-table | to update display property as table |
| .response-headers-table>div,.response-cookies-table>div | to update the first div (header) & set display as table-row |
| .response-headers-table>div>div,.response-cookies-table>div>div | to update styles for nested divs' of table header & set display as table cell |
| .response-headers-table>div:first-child,.response-cookies-table>div:first-child | to update the column background color & heading as bold |
@@ -119,7 +119,7 @@ import { Meta, ColorPalette, ColorItem } from '@storybook/addon-docs';
| .fc-tab-panel-header.fc-collapse-btn-v3 > .fc-tab-panel-header-right | to update the position & styles of right sub-component within tab header |
| .fc-collapsable > .fc-collapse-btn-v3 | to update the display property as none for v3 |
| .fc-collapsed-v3 | to update the width for collapsed v3 resizable element |
-| .fc-col-resizer.fc-collapsed.fc-collapsed-v3.fc-collapsable.left | to update border left propterty for left sub-component |
+| .fc-col-resizer.fc-collapsed.fc-collapsed-v3.fc-collapsable.left | to update border left property for left sub-component |
| .fc-collapsed > .fc-collapse-btn, .fc-collapsed ~ div .fc-collapse-btn | to transform the button rotation to 180deg |
| .fc-collapsed > .fc-collapse-btn.fc-collapse-btn-v2, .fc-collapsed ~ div .fc-collapse-btn.fc-collapse-btn-v2 | to transform the button rotation to 0deg with more importance |
| .fc-collapsed > .fc-collapse-btn.fc-collapse-btn-v2 > span, .fc-collapsed ~ div .fc-collapse-btn.fc-collapse-btn-v2 > span | to transform the button rotation to 180deg |
diff --git a/playgrounds/firecamp-graphql/src/components/playground-panel/playground/request/query-editor/QueryEditor.tsx b/playgrounds/firecamp-graphql/src/components/playground-panel/playground/request/query-editor/QueryEditor.tsx
index cdc0ef80..fce76f32 100644
--- a/playgrounds/firecamp-graphql/src/components/playground-panel/playground/request/query-editor/QueryEditor.tsx
+++ b/playgrounds/firecamp-graphql/src/components/playground-panel/playground/request/query-editor/QueryEditor.tsx
@@ -253,7 +253,7 @@ ${print(GraphQLParse(`query MyQuery{__typename }`))}`;
// debugger;
/**
* if playground is being updated from external sources (like explorer) then It's default cursor position is always reset to last line
- * due to that currentOperation (query) will reset to last query of the the playground. and Explorer's feed will changes suddenly at last query.
+ * due to that currentOperation (query) will reset to last query of the playground. and Explorer's feed will changes suddenly at last query.
* to avoid it, if it founds cursor at last line then set current active query to get the same currentOperation from the GraphQLService
**/
// if (cursor.line == lastLineNo) {
diff --git a/playgrounds/firecamp-graphql/src/components/playground-panel/playground/request/statusbar/Controls.tsx b/playgrounds/firecamp-graphql/src/components/playground-panel/playground/request/statusbar/Controls.tsx
index 9d342090..7a36d6c7 100644
--- a/playgrounds/firecamp-graphql/src/components/playground-panel/playground/request/statusbar/Controls.tsx
+++ b/playgrounds/firecamp-graphql/src/components/playground-panel/playground/request/statusbar/Controls.tsx
@@ -19,7 +19,7 @@ const Controls = ({ isQueryDirty, toggleQueryDirty }) => {
setAddNewQueryMessage(``);
} else {
setAddNewQueryMessage(
- `You have not saved quries to collection! Are you sure you want to reset?`
+ `You have not saved queries to collection! Are you sure you want to reset?`
);
}
};
diff --git a/playgrounds/firecamp-graphql/src/services/graphql.service.ts b/playgrounds/firecamp-graphql/src/services/graphql.service.ts
index ecaa459d..5826ebe2 100644
--- a/playgrounds/firecamp-graphql/src/services/graphql.service.ts
+++ b/playgrounds/firecamp-graphql/src/services/graphql.service.ts
@@ -123,8 +123,8 @@ export const getPlaygroundName = (value: string) => {
};
return ops.reduce((p, n) => {
console.log(p, 1213);
- const separetor = p ? '___' : '';
- return `${p}${separetor}${opsMap[n.operation]}_${n?.name.value || 'Query'}`;
+ const separator = p ? '___' : '';
+ return `${p}${separator}${opsMap[n.operation]}_${n?.name.value || 'Query'}`;
}, '');
};
diff --git a/playgrounds/firecamp-graphql/src/store/slices/change.slice.ts b/playgrounds/firecamp-graphql/src/store/slices/change.slice.ts
index 13c1dc3f..3c1a73e2 100644
--- a/playgrounds/firecamp-graphql/src/store/slices/change.slice.ts
+++ b/playgrounds/firecamp-graphql/src/store/slices/change.slice.ts
@@ -29,7 +29,7 @@ interface IRequestChangeStateSlice {
*/
disposeRCS: () => void;
}
-//@note; always use _cloneDeep at its usage otherrwise it's value will be manipulate at global scope
+//@note; always use _cloneDeep at its usage otherwise its value will be manipulate at global scope
const initialSliceState = {
requestChangeState: {
url: [],
diff --git a/playgrounds/firecamp-graphql/src/store/slices/collection.slice.ts b/playgrounds/firecamp-graphql/src/store/slices/collection.slice.ts
index 5998b038..dcd60e70 100644
--- a/playgrounds/firecamp-graphql/src/store/slices/collection.slice.ts
+++ b/playgrounds/firecamp-graphql/src/store/slices/collection.slice.ts
@@ -17,7 +17,7 @@ interface ICollection {
folders?: Partial[];
/**
* incase the number on each action/event happens within collection
- * react component will not re-render when tdpInstance will change in store, at that time update __manualUpdates to re-render the compoenent
+ * react component will not re-render when tdpInstance will change in store, at that time update __manualUpdates to re-render the component
*/
__manualUpdates?: number;
}
diff --git a/playgrounds/firecamp-graphql/src/store/slices/playgrounds.slice.ts b/playgrounds/firecamp-graphql/src/store/slices/playgrounds.slice.ts
index 0344f7d3..93fc3b85 100644
--- a/playgrounds/firecamp-graphql/src/store/slices/playgrounds.slice.ts
+++ b/playgrounds/firecamp-graphql/src/store/slices/playgrounds.slice.ts
@@ -307,7 +307,7 @@ export const createPlaygroundsSlice: TStoreSlice = (
});
},
- /** undo changes and reset the the previously saved plg's state */
+ /** undo changes and reset the previously saved plg's state */
undoPlaygroundChanges: (playgroundId: string) => {
if (!playgroundId) return;
set((s) => {
diff --git a/playgrounds/firecamp-rest/src/store/slices/change.slice.ts b/playgrounds/firecamp-rest/src/store/slices/change.slice.ts
index 0df28ac3..b3d7dd0f 100644
--- a/playgrounds/firecamp-rest/src/store/slices/change.slice.ts
+++ b/playgrounds/firecamp-rest/src/store/slices/change.slice.ts
@@ -30,7 +30,7 @@ interface IRequestChangeStateSlice {
*/
disposeRCS: () => void;
}
-//@note; always use _cloneDeep at its usage otherwise it's value will be manipulate at global scope
+//@note; always use _cloneDeep at its usage otherwise its value will be manipulate at global scope
const initialSliceState = {
requestChangeState: {
url: [],
diff --git a/playgrounds/firecamp-rest/src/store/slices/request.slice.ts b/playgrounds/firecamp-rest/src/store/slices/request.slice.ts
index 68529d30..61f309f0 100644
--- a/playgrounds/firecamp-rest/src/store/slices/request.slice.ts
+++ b/playgrounds/firecamp-rest/src/store/slices/request.slice.ts
@@ -152,7 +152,7 @@ const createRequestSlice: TStoreSlice = (
// if request is saved then simply update the url with old value, ignore paste curl
if (request.__ref?.collectionId) {
state.context.app.notify.alert(
- 'You can not paste the CURL snippet onto the saved request, please open a new empty request tab instead.'
+ 'You cannot paste the CURL snippet onto the saved request, please open a new empty request tab instead.'
);
// console.log(url, 787798789);
state.changeUrl({ ...url, raw: url.raw.replace(snippet, '') });
diff --git a/playgrounds/firecamp-socket-io/src/components/Socket.tsx b/playgrounds/firecamp-socket-io/src/components/Socket.tsx
index e7d6c68c..407cd71b 100644
--- a/playgrounds/firecamp-socket-io/src/components/Socket.tsx
+++ b/playgrounds/firecamp-socket-io/src/components/Socket.tsx
@@ -70,7 +70,7 @@ const Socket = ({ tab, platformContext }) => {
const requestId = tab.entity?.__ref?.id;
const isRequestSaved = !!requestId;
// prepare a minimal request payload
- let _request = { collection: { folders: [], items: [] } }; // initialise will normalize the reuqest to prepare minimal request for tab
+ let _request = { collection: { folders: [], items: [] } }; // initialise will normalize the request to prepare minimal request for tab
if (isRequestSaved === true) {
toggleFetchingReqFlag(true);
diff --git a/playgrounds/firecamp-socket-io/src/components/connection-panel/connection/playground/BodyControls.tsx b/playgrounds/firecamp-socket-io/src/components/connection-panel/connection/playground/BodyControls.tsx
index 8ede7746..443bfec0 100644
--- a/playgrounds/firecamp-socket-io/src/components/connection-panel/connection/playground/BodyControls.tsx
+++ b/playgrounds/firecamp-socket-io/src/components/connection-panel/connection/playground/BodyControls.tsx
@@ -37,7 +37,7 @@ const BodyControls = ({ tabId = '', path = '', addNewEmitter = () => {} }) => {
- {/* */}
+ {/* */}
diff --git a/playgrounds/firecamp-socket-io/src/store/slices/change.slice.ts b/playgrounds/firecamp-socket-io/src/store/slices/change.slice.ts
index e3d7add5..78b84686 100644
--- a/playgrounds/firecamp-socket-io/src/store/slices/change.slice.ts
+++ b/playgrounds/firecamp-socket-io/src/store/slices/change.slice.ts
@@ -30,7 +30,7 @@ interface IRequestChangeStateSlice {
disposeRCS: () => void;
}
-//@note; always use _cloneDeep at its usage other wise it's value will be manipulated at global scope reference
+//@note; always use _cloneDeep at its usage otherwise its value will be manipulated at global scope reference
const initialSliceState = {
requestChangeState: {
url: [],
diff --git a/playgrounds/firecamp-socket-io/src/store/slices/handleConnectionExecutor.slice.ts b/playgrounds/firecamp-socket-io/src/store/slices/handleConnectionExecutor.slice.ts
index a61393be..75a40fbe 100644
--- a/playgrounds/firecamp-socket-io/src/store/slices/handleConnectionExecutor.slice.ts
+++ b/playgrounds/firecamp-socket-io/src/store/slices/handleConnectionExecutor.slice.ts
@@ -89,7 +89,7 @@ const createHandleConnectionExecutor: TStoreSlice<
// connect
executor.connect();
- // set executor in to playground
+ // set executor in playground
state.setPlgExecutor(executor);
// listen to on connect listener
diff --git a/playgrounds/firecamp-websocket/src/components/WebSocket.tsx b/playgrounds/firecamp-websocket/src/components/WebSocket.tsx
index 632ea00d..baa6085a 100644
--- a/playgrounds/firecamp-websocket/src/components/WebSocket.tsx
+++ b/playgrounds/firecamp-websocket/src/components/WebSocket.tsx
@@ -79,7 +79,7 @@ const WebSocket = ({ tab, platformContext }) => {
const requestId = tab.entity?.__ref?.id;
const isRequestSaved = !!requestId;
// prepare a minimal request payload
- let _request = { collection: { folders: [], items: [] } }; // initialise will normalize the reuqest to prepare minimal request for tab
+ let _request = { collection: { folders: [], items: [] } }; // initialise will normalize the request to prepare minimal request for tab
if (isRequestSaved === true) {
toggleFetchingReqFlag(true);
diff --git a/playgrounds/firecamp-websocket/src/store/slices/change.slice.ts b/playgrounds/firecamp-websocket/src/store/slices/change.slice.ts
index 99a28b01..5117b6cc 100644
--- a/playgrounds/firecamp-websocket/src/store/slices/change.slice.ts
+++ b/playgrounds/firecamp-websocket/src/store/slices/change.slice.ts
@@ -31,7 +31,7 @@ interface IRequestChangeStateSlice {
disposeRCS: () => void;
}
-//@note; always use _cloneDeep at its usage other wise it's value will be manipulate at global scope
+//@note; always use _cloneDeep at its usage otherwise its value will be manipulate at global scope
const initialSliceState = {
requestChangeState: {
url: [],
diff --git a/playgrounds/firecamp-websocket/src/store/slices/handleConnectionExecutor.slice.ts b/playgrounds/firecamp-websocket/src/store/slices/handleConnectionExecutor.slice.ts
index 401fb5c6..faaccf6d 100644
--- a/playgrounds/firecamp-websocket/src/store/slices/handleConnectionExecutor.slice.ts
+++ b/playgrounds/firecamp-websocket/src/store/slices/handleConnectionExecutor.slice.ts
@@ -73,7 +73,7 @@ const createHandleConnectionExecutor: TStoreSlice<
// connect
executor.connect();
- // set executor in to playground
+ // set executor in playground
state.setPlaygroundExecutor(executor);
} catch (error) {
console.info({
diff --git a/readme/README.v0.md b/readme/README.v0.md
index 891beec8..dff3c067 100644
--- a/readme/README.v0.md
+++ b/readme/README.v0.md
@@ -75,7 +75,7 @@ If you encounter any bugs, issues, or have suggestions, please open an issue on
## Roadmap
- Here is the Firecamp development roadmap. Very soon It'll be listed on Github projects for better project management.
+ Here is the Firecamp development roadmap. Very soon It'll be listed on GitHub projects for better project management.
- **AI: Cutting-edge AI-powered capabilities**
- **Firecamp CLI:** developer-friendly CLI tool
- **Test Runner:** An advanced API test runner