diff --git a/app/client/src/components/designSystems/appsmith/help/HelpModal.tsx b/app/client/src/components/designSystems/appsmith/help/HelpModal.tsx index aa4b83eb9c..42c8656589 100644 --- a/app/client/src/components/designSystems/appsmith/help/HelpModal.tsx +++ b/app/client/src/components/designSystems/appsmith/help/HelpModal.tsx @@ -68,9 +68,7 @@ class HelpModal extends React.Component { const { user } = this.props; if (cloudHosting && intercomAppID && window.Intercom) { window.Intercom("boot", { - // eslint-disable-next-line @typescript-eslint/camelcase app_id: intercomAppID, - // eslint-disable-next-line @typescript-eslint/camelcase user_id: user?.username, name: user?.name, email: user?.email, diff --git a/app/client/src/components/editorComponents/actioncreator/ActionCreator.tsx b/app/client/src/components/editorComponents/actioncreator/ActionCreator.tsx index 5bbd705d5c..6070c512a0 100644 --- a/app/client/src/components/editorComponents/actioncreator/ActionCreator.tsx +++ b/app/client/src/components/editorComponents/actioncreator/ActionCreator.tsx @@ -37,7 +37,7 @@ const ALERT_STYLE_OPTIONS = [ ]; const FILE_TYPE_OPTIONS = [ - { label: 'Select file type (optional)', value: "", id: "" }, + { label: "Select file type (optional)", value: "", id: "" }, { label: "Plain text", value: "'text/plain'", id: "text/plain" }, { label: "HTML", value: "'text/html'", id: "text/html" }, { label: "CSV", value: "'text/csv'", id: "text/csv" },