diff --git a/package.json b/package.json index d60908947..1241a8615 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,7 @@ "private": true, "dependencies": { "@blueprintjs-formik/core": "^0.2.1", + "@blueprintjs-formik/datetime": "^0.3.4", "@blueprintjs-formik/select": "^0.1.4", "@blueprintjs/core": "^3.50.2", "@blueprintjs/datetime": "^3.23.12", @@ -17,7 +18,6 @@ "@reduxjs/toolkit": "^1.2.5", "@sentry/react": "^6.13.2", "@sentry/tracing": "^6.13.2", - "@tanem/react-nprogress": "^3.0.24", "@testing-library/jest-dom": "^4.2.4", "@testing-library/react": "^9.4.0", "@testing-library/user-event": "^7.2.1", @@ -41,18 +41,12 @@ "basscss": "^8.0.2", "camelcase": "^5.3.1", "cross-env": "^7.0.2", - "css-loader": "3.4.2", "deep-map-keys": "^2.0.1", "deepdash": "^5.3.9", "dependency-graph": "^0.11.0", - "dotenv": "8.2.0", - "dotenv-expand": "5.1.0", "fast-deep-equal": "^3.1.3", - "flow-bin": "^0.123.0", "formik": "^2.2.5", - "fs-extra": "^8.1.0", "http-proxy-middleware": "^1.0.0", - "identity-obj-proxy": "3.0.0", "jest": "24.9.0", "jest-environment-jsdom-fourteen": "1.0.1", "jest-resolve": "24.9.0", @@ -61,6 +55,7 @@ "lodash": "^4.17.15", "moment": "^2.24.0", "moment-timezone": "^0.5.33", + "node-sass": "^4.14.1", "path-browserify": "^1.0.1", "query-string": "^7.1.1", "ramda": "^0.27.1", @@ -95,13 +90,12 @@ "redux-devtools": "^3.5.0", "redux-persist": "^6.0.0", "redux-thunk": "^2.3.0", - "resolve": "1.15.0", "rtl-detect": "^1.0.3", "semver": "6.3.0", "style-loader": "0.23.1", "styled-components": "^5.3.1", "stylis-rtlcss": "^2.1.1", - "typescript": "^4.1.2", + "typescript": "^4.8.3", "yup": "^0.28.1" }, "scripts": { @@ -111,8 +105,9 @@ "storybook": "start-storybook -p 6006", "preinstall": "npx npm-force-resolutions" }, - "eslintConfig": { - "extends": "react-app" + "proxy": "http://localhost:3000/", + "devDependencies": { + "@types/react-dom": "^16.9.16" }, "browserslist": { "production": [ @@ -125,66 +120,5 @@ "last 1 firefox version", "last 1 safari version" ] - }, - "jest": { - "roots": [ - "/src" - ], - "collectCoverageFrom": [ - "src/**/*.{js,jsx,ts,tsx}", - "!src/**/*.d.ts" - ], - "setupFiles": [ - "react-app-polyfill/jsdom" - ], - "setupFilesAfterEnv": [ - "/src/setupTests.js" - ], - "testMatch": [ - "/src/**/__tests__/**/*.{js,jsx,ts,tsx}", - "/src/**/*.{spec,test}.{js,jsx,ts,tsx}" - ], - "testEnvironment": "jest-environment-jsdom-fourteen", - "transform": { - "^.+\\.(js|jsx|ts|tsx)$": "/node_modules/babel-jest", - "^.+\\.css$": "/config/jest/cssTransform.js", - "^(?!.*\\.(js|jsx|ts|tsx|css|json)$)": "/config/jest/fileTransform.js" - }, - "transformIgnorePatterns": [ - "[/\\\\]node_modules[/\\\\].+\\.(js|jsx|ts|tsx)$", - "^.+\\.module\\.(css|sass|scss)$" - ], - "modulePaths": [ - "/Users/ahmed/Documents/Ratteb/client/src" - ], - "moduleNameMapper": { - "^react-native$": "react-native-b", - "^.+\\.module\\.(css|sass|scss)$": "identity-obj-proxy" - }, - "moduleFileExtensions": [ - "web.js", - "js", - "web.ts", - "ts", - "web.tsx", - "tsx", - "json", - "web.jsx", - "jsx", - "node" - ], - "watchPlugins": [ - "jest-watch-typeahead/filename", - "jest-watch-typeahead/testname" - ] - }, - "babel": { - "presets": [ - "react-app" - ] - }, - "proxy": "http://localhost:3000/", - "devDependencies": { - "@types/react-dom": "^16.9.16" } } diff --git a/src/components/Accounts/AccountMultiSelect.tsx b/src/components/Accounts/AccountMultiSelect.tsx index 8e9d54882..710859e5b 100644 --- a/src/components/Accounts/AccountMultiSelect.tsx +++ b/src/components/Accounts/AccountMultiSelect.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { MenuItem } from '@blueprintjs/core'; diff --git a/src/components/Accounts/AccountsMultiSelect.tsx b/src/components/Accounts/AccountsMultiSelect.tsx index a44d9c1bc..c648c2119 100644 --- a/src/components/Accounts/AccountsMultiSelect.tsx +++ b/src/components/Accounts/AccountsMultiSelect.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { MenuItem } from '@blueprintjs/core'; import { MultiSelect } from '../MultiSelectTaggable'; diff --git a/src/components/Accounts/AccountsSelectList.tsx b/src/components/Accounts/AccountsSelectList.tsx index 3ab476af4..e8eb37a4a 100644 --- a/src/components/Accounts/AccountsSelectList.tsx +++ b/src/components/Accounts/AccountsSelectList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback, useState, useEffect, useMemo } from 'react'; import intl from 'react-intl-universal'; import classNames from 'classnames'; diff --git a/src/components/Accounts/AccountsSuggestField.tsx b/src/components/Accounts/AccountsSuggestField.tsx index 63ae40edd..4afac2784 100644 --- a/src/components/Accounts/AccountsSuggestField.tsx +++ b/src/components/Accounts/AccountsSuggestField.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useState, useCallback, useEffect, useMemo } from 'react'; import * as R from 'ramda'; import intl from 'react-intl-universal'; diff --git a/src/components/Accounts/AccountsTypesSelect.tsx b/src/components/Accounts/AccountsTypesSelect.tsx index c4775731b..b00ab710a 100644 --- a/src/components/Accounts/AccountsTypesSelect.tsx +++ b/src/components/Accounts/AccountsTypesSelect.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import classNames from 'classnames'; import { ListSelect } from '@/components'; diff --git a/src/components/AdvancedFilter/AdvancedFilter.schema.tsx b/src/components/AdvancedFilter/AdvancedFilter.schema.tsx index b40e41a90..798c49d02 100644 --- a/src/components/AdvancedFilter/AdvancedFilter.schema.tsx +++ b/src/components/AdvancedFilter/AdvancedFilter.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; export const getFilterDropdownSchema = () => diff --git a/src/components/AdvancedFilter/AdvancedFilterCompatatorField.tsx b/src/components/AdvancedFilter/AdvancedFilterCompatatorField.tsx index ed280aaa8..7f15db95f 100644 --- a/src/components/AdvancedFilter/AdvancedFilterCompatatorField.tsx +++ b/src/components/AdvancedFilter/AdvancedFilterCompatatorField.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Classes } from '@blueprintjs/core'; import { ListSelect } from '../Select'; diff --git a/src/components/AdvancedFilter/AdvancedFilterDropdown.tsx b/src/components/AdvancedFilter/AdvancedFilterDropdown.tsx index d61a64193..3f27c928a 100644 --- a/src/components/AdvancedFilter/AdvancedFilterDropdown.tsx +++ b/src/components/AdvancedFilter/AdvancedFilterDropdown.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Formik, FastField, FieldArray, useFormikContext } from 'formik'; import { diff --git a/src/components/AdvancedFilter/AdvancedFilterDropdownContext.tsx b/src/components/AdvancedFilter/AdvancedFilterDropdownContext.tsx index 6e32f8116..6beadbd47 100644 --- a/src/components/AdvancedFilter/AdvancedFilterDropdownContext.tsx +++ b/src/components/AdvancedFilter/AdvancedFilterDropdownContext.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useContext } from 'react'; import { get, keyBy } from 'lodash'; import { useFormikContext } from 'formik'; diff --git a/src/components/AdvancedFilter/AdvancedFilterPopover.tsx b/src/components/AdvancedFilter/AdvancedFilterPopover.tsx index 902af70a0..8ca081fa6 100644 --- a/src/components/AdvancedFilter/AdvancedFilterPopover.tsx +++ b/src/components/AdvancedFilter/AdvancedFilterPopover.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Popover, PopoverInteractionKind, Position } from '@blueprintjs/core'; import { AdvancedFilterDropdown } from './AdvancedFilterDropdown'; diff --git a/src/components/AdvancedFilter/AdvancedFilterValueField.tsx b/src/components/AdvancedFilter/AdvancedFilterValueField.tsx index 4123b53d6..b60c06103 100644 --- a/src/components/AdvancedFilter/AdvancedFilterValueField.tsx +++ b/src/components/AdvancedFilter/AdvancedFilterValueField.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Position, Checkbox, InputGroup } from '@blueprintjs/core'; import { DateInput } from '@blueprintjs/datetime'; diff --git a/src/components/AdvancedFilter/components.tsx b/src/components/AdvancedFilter/components.tsx index 4e139ca65..be8eaca28 100644 --- a/src/components/AdvancedFilter/components.tsx +++ b/src/components/AdvancedFilter/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; import { debounce } from 'lodash'; diff --git a/src/components/AdvancedFilter/interfaces.ts b/src/components/AdvancedFilter/interfaces.ts index 8fe9d705b..854c2000c 100644 --- a/src/components/AdvancedFilter/interfaces.ts +++ b/src/components/AdvancedFilter/interfaces.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import { ArrayHelpers } from 'formik'; import { IPopoverProps } from '@blueprintjs/core'; diff --git a/src/components/AdvancedFilter/utils.tsx b/src/components/AdvancedFilter/utils.tsx index 8b041f346..798cd2026 100644 --- a/src/components/AdvancedFilter/utils.tsx +++ b/src/components/AdvancedFilter/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; import { defaultFastFieldShouldUpdate, diff --git a/src/components/Alert/index.tsx b/src/components/Alert/index.tsx index e0c3dd61a..0bde33523 100644 --- a/src/components/Alert/index.tsx +++ b/src/components/Alert/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import clsx from 'classnames'; import styled from 'styled-components'; diff --git a/src/components/App.tsx b/src/components/App.tsx index d82ca1061..de8263e5c 100644 --- a/src/components/App.tsx +++ b/src/components/App.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Router, Switch, Route } from 'react-router'; import { createBrowserHistory } from 'history'; diff --git a/src/components/AppIntlLoader.tsx b/src/components/AppIntlLoader.tsx index bb318ec87..419a283c6 100644 --- a/src/components/AppIntlLoader.tsx +++ b/src/components/AppIntlLoader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import { setLocale } from 'yup'; diff --git a/src/components/AppIntlProvider.tsx b/src/components/AppIntlProvider.tsx index d763b7fd4..24dd05be0 100644 --- a/src/components/AppIntlProvider.tsx +++ b/src/components/AppIntlProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext } from 'react'; const AppIntlContext = createContext(); diff --git a/src/components/AppToaster/index.tsx b/src/components/AppToaster/index.tsx index 3ff542c86..57dc43d2f 100644 --- a/src/components/AppToaster/index.tsx +++ b/src/components/AppToaster/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { Position, Toaster, Intent } from '@blueprintjs/core'; export const AppToaster = Toaster.create({ diff --git a/src/components/Authentication.tsx b/src/components/Authentication.tsx index d9c45b346..1a3267554 100644 --- a/src/components/Authentication.tsx +++ b/src/components/Authentication.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Redirect, Route, Switch, Link, useLocation } from 'react-router-dom'; import BodyClassName from 'react-body-classname'; diff --git a/src/components/AvaterCell.tsx b/src/components/AvaterCell.tsx index 6e615353e..d7d031a58 100644 --- a/src/components/AvaterCell.tsx +++ b/src/components/AvaterCell.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { firstLettersArgs } from '@/utils'; diff --git a/src/components/BankAccounts/index.tsx b/src/components/BankAccounts/index.tsx index 1af258abd..ed0c24f5a 100644 --- a/src/components/BankAccounts/index.tsx +++ b/src/components/BankAccounts/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/components/Branches/BranchMultiSelect.tsx b/src/components/Branches/BranchMultiSelect.tsx index 2d36e02f1..a4a1bfe9d 100644 --- a/src/components/Branches/BranchMultiSelect.tsx +++ b/src/components/Branches/BranchMultiSelect.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { MenuItem } from '@blueprintjs/core'; diff --git a/src/components/Branches/BranchSelect.tsx b/src/components/Branches/BranchSelect.tsx index b07358ccc..6e463ad9a 100644 --- a/src/components/Branches/BranchSelect.tsx +++ b/src/components/Branches/BranchSelect.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { MenuItem, Button } from '@blueprintjs/core'; diff --git a/src/components/Branches/BranchSuggestField.tsx b/src/components/Branches/BranchSuggestField.tsx index 2432c8093..a7f576464 100644 --- a/src/components/Branches/BranchSuggestField.tsx +++ b/src/components/Branches/BranchSuggestField.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { MenuItem } from '@blueprintjs/core'; diff --git a/src/components/Branches/index.tsx b/src/components/Branches/index.tsx index 92b8d2eca..1b7ab26e3 100644 --- a/src/components/Branches/index.tsx +++ b/src/components/Branches/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export * from './BranchSelect'; export * from './BranchMultiSelect'; export * from './BranchSuggestField'; diff --git a/src/components/Button/ButtonLink.tsx b/src/components/Button/ButtonLink.tsx index 739f12ecc..198dafb29 100644 --- a/src/components/Button/ButtonLink.tsx +++ b/src/components/Button/ButtonLink.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import styled from 'styled-components'; export const ButtonLink = styled.button` diff --git a/src/components/Card/index.tsx b/src/components/Card/index.tsx index 598085686..3cda38d67 100644 --- a/src/components/Card/index.tsx +++ b/src/components/Card/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/components/Contacts/ContactSelecetList.tsx b/src/components/Contacts/ContactSelecetList.tsx index 0f99d783b..8d8bdbfcc 100644 --- a/src/components/Contacts/ContactSelecetList.tsx +++ b/src/components/Contacts/ContactSelecetList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback, useState, useEffect, useMemo } from 'react'; import { FormattedMessage as T } from '@/components'; import intl from 'react-intl-universal'; diff --git a/src/components/Contacts/ContactSelectField.tsx b/src/components/Contacts/ContactSelectField.tsx index 6940cf522..c475b6cf9 100644 --- a/src/components/Contacts/ContactSelectField.tsx +++ b/src/components/Contacts/ContactSelectField.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback, useState, useEffect, useMemo } from 'react'; import { FormattedMessage as T } from '@/components'; import intl from 'react-intl-universal'; diff --git a/src/components/Contacts/ContactsMultiSelect.tsx b/src/components/Contacts/ContactsMultiSelect.tsx index 7e4ac8dc0..2eb3536a4 100644 --- a/src/components/Contacts/ContactsMultiSelect.tsx +++ b/src/components/Contacts/ContactsMultiSelect.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import { MenuItem } from '@blueprintjs/core'; import { MultiSelect } from '../MultiSelectTaggable'; diff --git a/src/components/Contacts/ContactsSuggestField.tsx b/src/components/Contacts/ContactsSuggestField.tsx index fa0c58b07..913fdc430 100644 --- a/src/components/Contacts/ContactsSuggestField.tsx +++ b/src/components/Contacts/ContactsSuggestField.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback, useState, useEffect, useMemo } from 'react'; import { MenuItem } from '@blueprintjs/core'; import { Suggest } from '@blueprintjs/select'; diff --git a/src/components/Contacts/index.tsx b/src/components/Contacts/index.tsx index 5b56c1e96..1e8f0a7a1 100644 --- a/src/components/Contacts/index.tsx +++ b/src/components/Contacts/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export * from './ContactSelectField'; export * from './ContactsSuggestField'; export * from './ContactSelecetList'; diff --git a/src/components/Contacts/utils.tsx b/src/components/Contacts/utils.tsx index 58b453981..e80481b62 100644 --- a/src/components/Contacts/utils.tsx +++ b/src/components/Contacts/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { MenuItem } from '@blueprintjs/core'; diff --git a/src/components/ContextMenu.tsx b/src/components/ContextMenu.tsx index 66babd2f9..61b725ff0 100644 --- a/src/components/ContextMenu.tsx +++ b/src/components/ContextMenu.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { memo } from 'react'; import { Popover, Position, Classes } from '@blueprintjs/core'; import { saveInvoke } from '@/utils'; diff --git a/src/components/Currencies/BaseCurrency.tsx b/src/components/Currencies/BaseCurrency.tsx index 712db3794..8453afc93 100644 --- a/src/components/Currencies/BaseCurrency.tsx +++ b/src/components/Currencies/BaseCurrency.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { CurrencyTag } from '@/components'; diff --git a/src/components/Currencies/CurrenciesSelectList.tsx b/src/components/Currencies/CurrenciesSelectList.tsx index bbf0cb0d5..af531e2fa 100644 --- a/src/components/Currencies/CurrenciesSelectList.tsx +++ b/src/components/Currencies/CurrenciesSelectList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import { MenuItem, Button } from '@blueprintjs/core'; import { Select } from '@blueprintjs/select'; diff --git a/src/components/Currencies/CurrencySelect.tsx b/src/components/Currencies/CurrencySelect.tsx index c5557ff33..5d5654667 100644 --- a/src/components/Currencies/CurrencySelect.tsx +++ b/src/components/Currencies/CurrencySelect.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; diff --git a/src/components/Currencies/CurrencySelectList.tsx b/src/components/Currencies/CurrencySelectList.tsx index eafa01ea5..7544ea51f 100644 --- a/src/components/Currencies/CurrencySelectList.tsx +++ b/src/components/Currencies/CurrencySelectList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback, useEffect, useState } from 'react'; import { FormattedMessage as T } from '@/components'; import { CLASSES } from '@/constants/classes'; diff --git a/src/components/Currencies/index.tsx b/src/components/Currencies/index.tsx index 96c86f09c..92fcc5d97 100644 --- a/src/components/Currencies/index.tsx +++ b/src/components/Currencies/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export * from './CurrencySelect'; export * from './BaseCurrency'; export * from './CurrenciesSelectList'; diff --git a/src/components/Customers/CustomerDrawerLink.tsx b/src/components/Customers/CustomerDrawerLink.tsx index 357ebc540..099ec0a5b 100644 --- a/src/components/Customers/CustomerDrawerLink.tsx +++ b/src/components/Customers/CustomerDrawerLink.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as R from 'ramda'; diff --git a/src/components/Customers/CustomerSelectField.tsx b/src/components/Customers/CustomerSelectField.tsx index f3115bc8f..e7d5dce2a 100644 --- a/src/components/Customers/CustomerSelectField.tsx +++ b/src/components/Customers/CustomerSelectField.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback, useState, useEffect, useMemo } from 'react'; import { FormattedMessage as T } from '@/components'; import intl from 'react-intl-universal'; diff --git a/src/components/Customers/index.tsx b/src/components/Customers/index.tsx index 78916c3eb..eb057000f 100644 --- a/src/components/Customers/index.tsx +++ b/src/components/Customers/index.tsx @@ -1,2 +1,3 @@ +// @ts-nocheck export * from './CustomerSelectField'; export * from './CustomerDrawerLink'; diff --git a/src/components/Customers/utils.tsx b/src/components/Customers/utils.tsx index 58b453981..e80481b62 100644 --- a/src/components/Customers/utils.tsx +++ b/src/components/Customers/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { MenuItem } from '@blueprintjs/core'; diff --git a/src/components/Dashboard/BigcapitalLoading.tsx b/src/components/Dashboard/BigcapitalLoading.tsx index b9185270b..60acf4ead 100644 --- a/src/components/Dashboard/BigcapitalLoading.tsx +++ b/src/components/Dashboard/BigcapitalLoading.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import { Icon } from '@/components'; diff --git a/src/components/Dashboard/Dashboard.tsx b/src/components/Dashboard/Dashboard.tsx index ceb2ebcb7..8371e0fba 100644 --- a/src/components/Dashboard/Dashboard.tsx +++ b/src/components/Dashboard/Dashboard.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Switch, Route } from 'react-router'; diff --git a/src/components/Dashboard/DashboardAbilityProvider.tsx b/src/components/Dashboard/DashboardAbilityProvider.tsx index 8fc9dfe8d..edad74ac1 100644 --- a/src/components/Dashboard/DashboardAbilityProvider.tsx +++ b/src/components/Dashboard/DashboardAbilityProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Ability } from '@casl/ability'; import { createContextualCan } from '@casl/react'; diff --git a/src/components/Dashboard/DashboardActionViewsList.tsx b/src/components/Dashboard/DashboardActionViewsList.tsx index a949c2203..a06b0eeb9 100644 --- a/src/components/Dashboard/DashboardActionViewsList.tsx +++ b/src/components/Dashboard/DashboardActionViewsList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo, useState } from 'react'; import classNames from 'classnames'; import { diff --git a/src/components/Dashboard/DashboardActionsBar.tsx b/src/components/Dashboard/DashboardActionsBar.tsx index 463e872e5..29a2f3bb4 100644 --- a/src/components/Dashboard/DashboardActionsBar.tsx +++ b/src/components/Dashboard/DashboardActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import clsx from 'classnames'; import { Navbar } from '@blueprintjs/core'; diff --git a/src/components/Dashboard/DashboardBackLink.tsx b/src/components/Dashboard/DashboardBackLink.tsx index 41757e573..e68501dfb 100644 --- a/src/components/Dashboard/DashboardBackLink.tsx +++ b/src/components/Dashboard/DashboardBackLink.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import withBreadcrumbs from 'react-router-breadcrumbs-hoc'; import { useHistory } from 'react-router-dom'; diff --git a/src/components/Dashboard/DashboardBoot.tsx b/src/components/Dashboard/DashboardBoot.tsx index e10e02614..a3316a7f5 100644 --- a/src/components/Dashboard/DashboardBoot.tsx +++ b/src/components/Dashboard/DashboardBoot.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useAuthenticatedAccount, diff --git a/src/components/Dashboard/DashboardBreadcrumbs.tsx b/src/components/Dashboard/DashboardBreadcrumbs.tsx index 423cfd10f..38537b2a4 100644 --- a/src/components/Dashboard/DashboardBreadcrumbs.tsx +++ b/src/components/Dashboard/DashboardBreadcrumbs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { CollapsibleList, diff --git a/src/components/Dashboard/DashboardCard.tsx b/src/components/Dashboard/DashboardCard.tsx index aedec9ce8..3a8e3c936 100644 --- a/src/components/Dashboard/DashboardCard.tsx +++ b/src/components/Dashboard/DashboardCard.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; diff --git a/src/components/Dashboard/DashboardContent.tsx b/src/components/Dashboard/DashboardContent.tsx index 9acc9bc77..fcdce6195 100644 --- a/src/components/Dashboard/DashboardContent.tsx +++ b/src/components/Dashboard/DashboardContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { ErrorBoundary } from 'react-error-boundary'; import DashboardTopbar from '@/components/Dashboard/DashboardTopbar'; diff --git a/src/components/Dashboard/DashboardContentRoute.tsx b/src/components/Dashboard/DashboardContentRoute.tsx index 5f6ae054d..cf5ccf4b5 100644 --- a/src/components/Dashboard/DashboardContentRoute.tsx +++ b/src/components/Dashboard/DashboardContentRoute.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Route, Switch } from 'react-router-dom'; diff --git a/src/components/Dashboard/DashboardContentTable.tsx b/src/components/Dashboard/DashboardContentTable.tsx index 61a48f116..367800a0e 100644 --- a/src/components/Dashboard/DashboardContentTable.tsx +++ b/src/components/Dashboard/DashboardContentTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import { CLASSES } from '@/constants/classes'; diff --git a/src/components/Dashboard/DashboardErrorBoundary.tsx b/src/components/Dashboard/DashboardErrorBoundary.tsx index 92ab77467..4e66ed51c 100644 --- a/src/components/Dashboard/DashboardErrorBoundary.tsx +++ b/src/components/Dashboard/DashboardErrorBoundary.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FormattedMessage as T, Icon } from '@/components'; diff --git a/src/components/Dashboard/DashboardFilterButton.tsx b/src/components/Dashboard/DashboardFilterButton.tsx index 9fc2b36e1..c0c45bacb 100644 --- a/src/components/Dashboard/DashboardFilterButton.tsx +++ b/src/components/Dashboard/DashboardFilterButton.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import intl from "react-intl-universal"; diff --git a/src/components/Dashboard/DashboardFooter.tsx b/src/components/Dashboard/DashboardFooter.tsx index b9cb95d2f..9928bf3da 100644 --- a/src/components/Dashboard/DashboardFooter.tsx +++ b/src/components/Dashboard/DashboardFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { getFooterLinks } from '@/constants/footerLinks'; import { For } from '@/components'; diff --git a/src/components/Dashboard/DashboardInsider.tsx b/src/components/Dashboard/DashboardInsider.tsx index c79a957e0..f46dae7bb 100644 --- a/src/components/Dashboard/DashboardInsider.tsx +++ b/src/components/Dashboard/DashboardInsider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classnames from 'classnames'; import { LoadingIndicator } from '../Indicator'; diff --git a/src/components/Dashboard/DashboardLoadingIndicator.tsx b/src/components/Dashboard/DashboardLoadingIndicator.tsx index 0384026fe..fca5e17e5 100644 --- a/src/components/Dashboard/DashboardLoadingIndicator.tsx +++ b/src/components/Dashboard/DashboardLoadingIndicator.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Choose } from '@/components'; import BigcapitalLoading from './BigcapitalLoading'; diff --git a/src/components/Dashboard/DashboardPage.tsx b/src/components/Dashboard/DashboardPage.tsx index 74022970f..4bf45336b 100644 --- a/src/components/Dashboard/DashboardPage.tsx +++ b/src/components/Dashboard/DashboardPage.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect, Suspense } from 'react'; import { CLASSES } from '@/constants/classes'; import withDashboardActions from '@/containers/Dashboard/withDashboardActions'; diff --git a/src/components/Dashboard/DashboardPageContent.tsx b/src/components/Dashboard/DashboardPageContent.tsx index 51cef2b2a..ed2acae18 100644 --- a/src/components/Dashboard/DashboardPageContent.tsx +++ b/src/components/Dashboard/DashboardPageContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; /** diff --git a/src/components/Dashboard/DashboardProvider.tsx b/src/components/Dashboard/DashboardProvider.tsx index 7e05fb00c..c71904c3d 100644 --- a/src/components/Dashboard/DashboardProvider.tsx +++ b/src/components/Dashboard/DashboardProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DashboardAbilityProvider } from '../../components'; import { useDashboardMetaBoot } from './DashboardBoot'; diff --git a/src/components/Dashboard/DashboardRowsHeightButton/index.tsx b/src/components/Dashboard/DashboardRowsHeightButton/index.tsx index 65bacebba..7c10805ff 100644 --- a/src/components/Dashboard/DashboardRowsHeightButton/index.tsx +++ b/src/components/Dashboard/DashboardRowsHeightButton/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, diff --git a/src/components/Dashboard/DashboardSplitePane.tsx b/src/components/Dashboard/DashboardSplitePane.tsx index a52080d12..8ddda705c 100644 --- a/src/components/Dashboard/DashboardSplitePane.tsx +++ b/src/components/Dashboard/DashboardSplitePane.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useState, useRef } from 'react'; import SplitPane from 'react-split-pane'; import { debounce } from 'lodash'; diff --git a/src/components/Dashboard/DashboardThemeProvider.tsx b/src/components/Dashboard/DashboardThemeProvider.tsx index 013bf1cef..763e5e773 100644 --- a/src/components/Dashboard/DashboardThemeProvider.tsx +++ b/src/components/Dashboard/DashboardThemeProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { ThemeProvider, StyleSheetManager } from 'styled-components'; import rtlcss from 'stylis-rtlcss'; diff --git a/src/components/Dashboard/DashboardTopbar.tsx b/src/components/Dashboard/DashboardTopbar.tsx index 39cee407f..a7422845e 100644 --- a/src/components/Dashboard/DashboardTopbar.tsx +++ b/src/components/Dashboard/DashboardTopbar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router'; import { diff --git a/src/components/Dashboard/DashboardViewsTabs.tsx b/src/components/Dashboard/DashboardViewsTabs.tsx index e0603783d..a36986fc8 100644 --- a/src/components/Dashboard/DashboardViewsTabs.tsx +++ b/src/components/Dashboard/DashboardViewsTabs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useRef, useState, useEffect } from 'react'; import { FormattedMessage as T } from '@/components'; import PropTypes from 'prop-types'; diff --git a/src/components/Dashboard/GlobalHotkeys.tsx b/src/components/Dashboard/GlobalHotkeys.tsx index 12f73c3ae..24f4b12d7 100644 --- a/src/components/Dashboard/GlobalHotkeys.tsx +++ b/src/components/Dashboard/GlobalHotkeys.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHotkeys } from 'react-hotkeys-hook'; import { useHistory } from 'react-router-dom'; diff --git a/src/components/Dashboard/PrivatePages.tsx b/src/components/Dashboard/PrivatePages.tsx index 389523c15..85e91dead 100644 --- a/src/components/Dashboard/PrivatePages.tsx +++ b/src/components/Dashboard/PrivatePages.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Switch, Route } from 'react-router'; diff --git a/src/components/Dashboard/PrivatePagesProvider.tsx b/src/components/Dashboard/PrivatePagesProvider.tsx index fb555760a..3716b3011 100644 --- a/src/components/Dashboard/PrivatePagesProvider.tsx +++ b/src/components/Dashboard/PrivatePagesProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useApplicationBoot } from '@/components'; diff --git a/src/components/Dashboard/SplashScreen.tsx b/src/components/Dashboard/SplashScreen.tsx index 66cb86cf4..1815bd3c9 100644 --- a/src/components/Dashboard/SplashScreen.tsx +++ b/src/components/Dashboard/SplashScreen.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as R from 'ramda'; import BigcapitalLoading from './BigcapitalLoading'; diff --git a/src/components/Dashboard/TopbarUser.tsx b/src/components/Dashboard/TopbarUser.tsx index fd87188bc..4dc823e40 100644 --- a/src/components/Dashboard/TopbarUser.tsx +++ b/src/components/Dashboard/TopbarUser.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; import { diff --git a/src/components/Dashboard/index.tsx b/src/components/Dashboard/index.tsx index a22e03f4d..f24f08805 100644 --- a/src/components/Dashboard/index.tsx +++ b/src/components/Dashboard/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export * from './SplashScreen'; export * from './DashboardBoot'; export * from './DashboardThemeProvider'; diff --git a/src/components/DataTableCells/AccountsListFieldCell.tsx b/src/components/DataTableCells/AccountsListFieldCell.tsx index 5dc3fd449..ea401bc84 100644 --- a/src/components/DataTableCells/AccountsListFieldCell.tsx +++ b/src/components/DataTableCells/AccountsListFieldCell.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useRef, useCallback, useMemo } from 'react'; import classNames from 'classnames'; import { FormGroup, Classes, Intent } from '@blueprintjs/core'; diff --git a/src/components/DataTableCells/BranchesListFieldCell.tsx b/src/components/DataTableCells/BranchesListFieldCell.tsx index b27b7d93f..26a0d1532 100644 --- a/src/components/DataTableCells/BranchesListFieldCell.tsx +++ b/src/components/DataTableCells/BranchesListFieldCell.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FormGroup, Intent, Classes } from '@blueprintjs/core'; import classNames from 'classnames'; diff --git a/src/components/DataTableCells/CheckBoxFieldCell.tsx b/src/components/DataTableCells/CheckBoxFieldCell.tsx index 4fffcd25d..5aa0b8d37 100644 --- a/src/components/DataTableCells/CheckBoxFieldCell.tsx +++ b/src/components/DataTableCells/CheckBoxFieldCell.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import { get } from 'lodash'; diff --git a/src/components/DataTableCells/ContactsListFieldCell.tsx b/src/components/DataTableCells/ContactsListFieldCell.tsx index aa8b582c0..958089335 100644 --- a/src/components/DataTableCells/ContactsListFieldCell.tsx +++ b/src/components/DataTableCells/ContactsListFieldCell.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import { FormGroup, Intent, Classes } from '@blueprintjs/core'; import classNames from 'classnames'; diff --git a/src/components/DataTableCells/DivFieldCell.tsx b/src/components/DataTableCells/DivFieldCell.tsx index c02ec5f13..58b40e7b2 100644 --- a/src/components/DataTableCells/DivFieldCell.tsx +++ b/src/components/DataTableCells/DivFieldCell.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useState, useEffect } from 'react'; export const DivFieldCell = ({ cell: { value: initialValue } }) => { diff --git a/src/components/DataTableCells/InputGroupCell.tsx b/src/components/DataTableCells/InputGroupCell.tsx index c6a5d0af7..54878ba03 100644 --- a/src/components/DataTableCells/InputGroupCell.tsx +++ b/src/components/DataTableCells/InputGroupCell.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useState, useEffect } from 'react'; import classNames from 'classnames'; import { Classes, InputGroup, FormGroup, Intent } from '@blueprintjs/core'; diff --git a/src/components/DataTableCells/ItemsListCell.tsx b/src/components/DataTableCells/ItemsListCell.tsx index ab1434714..22f41901a 100644 --- a/src/components/DataTableCells/ItemsListCell.tsx +++ b/src/components/DataTableCells/ItemsListCell.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback, useRef } from 'react'; import classNames from 'classnames'; import { FormGroup, Classes, Intent } from '@blueprintjs/core'; diff --git a/src/components/DataTableCells/MoneyFieldCell.tsx b/src/components/DataTableCells/MoneyFieldCell.tsx index 33be73bd2..50704e93d 100644 --- a/src/components/DataTableCells/MoneyFieldCell.tsx +++ b/src/components/DataTableCells/MoneyFieldCell.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback, useState, useEffect } from 'react'; import { FormGroup, Intent } from '@blueprintjs/core'; diff --git a/src/components/DataTableCells/NumericInputCell.tsx b/src/components/DataTableCells/NumericInputCell.tsx index 32fc363e1..71e2d637d 100644 --- a/src/components/DataTableCells/NumericInputCell.tsx +++ b/src/components/DataTableCells/NumericInputCell.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useState, useEffect } from 'react'; import { FormGroup, NumericInput, Intent } from '@blueprintjs/core'; import classNames from 'classnames'; diff --git a/src/components/DataTableCells/PaymentReceiveListFieldCell.tsx b/src/components/DataTableCells/PaymentReceiveListFieldCell.tsx index 3996fd1bd..7a0fc11d8 100644 --- a/src/components/DataTableCells/PaymentReceiveListFieldCell.tsx +++ b/src/components/DataTableCells/PaymentReceiveListFieldCell.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import classNames from 'classnames'; import { FormGroup, Classes, Intent } from '@blueprintjs/core'; diff --git a/src/components/DataTableCells/PercentFieldCell.tsx b/src/components/DataTableCells/PercentFieldCell.tsx index ad1eaa243..9fdbf2e29 100644 --- a/src/components/DataTableCells/PercentFieldCell.tsx +++ b/src/components/DataTableCells/PercentFieldCell.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback, useState, useEffect } from 'react'; import { FormGroup, Intent } from '@blueprintjs/core'; diff --git a/src/components/DataTableCells/ProjectInvoicingCell.tsx b/src/components/DataTableCells/ProjectInvoicingCell.tsx index 890d9a768..65fbf1f37 100644 --- a/src/components/DataTableCells/ProjectInvoicingCell.tsx +++ b/src/components/DataTableCells/ProjectInvoicingCell.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { Popover2 } from '@blueprintjs/popover2'; diff --git a/src/components/DataTableCells/ProjectsListFieldCell.tsx b/src/components/DataTableCells/ProjectsListFieldCell.tsx index 1d611c722..5cf6810fb 100644 --- a/src/components/DataTableCells/ProjectsListFieldCell.tsx +++ b/src/components/DataTableCells/ProjectsListFieldCell.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import { FormGroup, Intent, Classes } from '@blueprintjs/core'; import classNames from 'classnames'; diff --git a/src/components/DataTableCells/SwitchFieldCell.tsx b/src/components/DataTableCells/SwitchFieldCell.tsx index 4a1959f07..13af39e4c 100644 --- a/src/components/DataTableCells/SwitchFieldCell.tsx +++ b/src/components/DataTableCells/SwitchFieldCell.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import { Classes, Switch, FormGroup, Intent } from '@blueprintjs/core'; diff --git a/src/components/DataTableCells/TextAreaCell.tsx b/src/components/DataTableCells/TextAreaCell.tsx index 32466faa8..f394b266b 100644 --- a/src/components/DataTableCells/TextAreaCell.tsx +++ b/src/components/DataTableCells/TextAreaCell.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useState, useEffect } from 'react'; import classNames from 'classnames'; import { Classes, TextArea, FormGroup, Intent } from '@blueprintjs/core'; diff --git a/src/components/DataTableCells/TextOverviewTooltipCell.tsx b/src/components/DataTableCells/TextOverviewTooltipCell.tsx index e2028d797..f33cbe0c3 100644 --- a/src/components/DataTableCells/TextOverviewTooltipCell.tsx +++ b/src/components/DataTableCells/TextOverviewTooltipCell.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Tooltip, Position } from '@blueprintjs/core'; diff --git a/src/components/DataTableCells/index.tsx b/src/components/DataTableCells/index.tsx index 6b3ba23ee..af20d7f5b 100644 --- a/src/components/DataTableCells/index.tsx +++ b/src/components/DataTableCells/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import AccountsListFieldCell from './AccountsListFieldCell'; import MoneyFieldCell from './MoneyFieldCell'; import InputGroupCell from './InputGroupCell'; diff --git a/src/components/Datatable/CellForceWidth.tsx b/src/components/Datatable/CellForceWidth.tsx index 9a1905ff0..86985055e 100644 --- a/src/components/Datatable/CellForceWidth.tsx +++ b/src/components/Datatable/CellForceWidth.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { get } from 'lodash'; diff --git a/src/components/Datatable/Cells.tsx b/src/components/Datatable/Cells.tsx index 8c5efd370..6cc6f8083 100644 --- a/src/components/Datatable/Cells.tsx +++ b/src/components/Datatable/Cells.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; export function CellTextSpan({ cell: { value } }) { diff --git a/src/components/Datatable/DataTable.tsx b/src/components/Datatable/DataTable.tsx index deddcddf7..8e92b51e4 100644 --- a/src/components/Datatable/DataTable.tsx +++ b/src/components/Datatable/DataTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect, useRef } from 'react'; import { useTable, diff --git a/src/components/Datatable/DatatableEditable.tsx b/src/components/Datatable/DatatableEditable.tsx index db5db3e92..300559b30 100644 --- a/src/components/Datatable/DatatableEditable.tsx +++ b/src/components/Datatable/DatatableEditable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/components/Datatable/Pagination.tsx b/src/components/Datatable/Pagination.tsx index d94ccec40..2dd1186ba 100644 --- a/src/components/Datatable/Pagination.tsx +++ b/src/components/Datatable/Pagination.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useReducer, useEffect } from 'react'; import classNames from 'classnames'; import { Button, ButtonGroup, Intent, HTMLSelect } from '@blueprintjs/core'; diff --git a/src/components/Datatable/TableBody.tsx b/src/components/Datatable/TableBody.tsx index f1a5808c6..ef6f87df7 100644 --- a/src/components/Datatable/TableBody.tsx +++ b/src/components/Datatable/TableBody.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default function TableBody({}) { diff --git a/src/components/Datatable/TableCell.tsx b/src/components/Datatable/TableCell.tsx index 9f3b641bd..2620a0bf0 100644 --- a/src/components/Datatable/TableCell.tsx +++ b/src/components/Datatable/TableCell.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useContext } from 'react'; import classNames from 'classnames'; import { camelCase} from 'lodash'; diff --git a/src/components/Datatable/TableContext.tsx b/src/components/Datatable/TableContext.tsx index fc6533f45..ff918cab9 100644 --- a/src/components/Datatable/TableContext.tsx +++ b/src/components/Datatable/TableContext.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createContext } from 'react'; export default createContext(); \ No newline at end of file diff --git a/src/components/Datatable/TableFastCell.tsx b/src/components/Datatable/TableFastCell.tsx index f6bae19ec..535391d32 100644 --- a/src/components/Datatable/TableFastCell.tsx +++ b/src/components/Datatable/TableFastCell.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { memo } from 'react'; import TableCell from './TableCell'; diff --git a/src/components/Datatable/TableFooter.tsx b/src/components/Datatable/TableFooter.tsx index acb50b693..a3dc711a3 100644 --- a/src/components/Datatable/TableFooter.tsx +++ b/src/components/Datatable/TableFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useContext } from 'react'; import classNames from 'classnames'; import TableContext from './TableContext'; diff --git a/src/components/Datatable/TableHeader.tsx b/src/components/Datatable/TableHeader.tsx index bc99362d4..8d28c3b59 100644 --- a/src/components/Datatable/TableHeader.tsx +++ b/src/components/Datatable/TableHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useContext } from 'react'; import classNames from 'classnames'; import { ScrollSyncPane } from 'react-scroll-sync'; diff --git a/src/components/Datatable/TableHeaderSkeleton.tsx b/src/components/Datatable/TableHeaderSkeleton.tsx index 1cb7f6545..90e829825 100644 --- a/src/components/Datatable/TableHeaderSkeleton.tsx +++ b/src/components/Datatable/TableHeaderSkeleton.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useContext } from 'react'; import clsx from 'classnames'; import TableContext from './TableContext'; diff --git a/src/components/Datatable/TableIndeterminateCheckboxHeader.tsx b/src/components/Datatable/TableIndeterminateCheckboxHeader.tsx index f3dab4932..ec0ac64a4 100644 --- a/src/components/Datatable/TableIndeterminateCheckboxHeader.tsx +++ b/src/components/Datatable/TableIndeterminateCheckboxHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Checkbox } from '@blueprintjs/core'; diff --git a/src/components/Datatable/TableIndeterminateCheckboxRow.tsx b/src/components/Datatable/TableIndeterminateCheckboxRow.tsx index 675508785..986708580 100644 --- a/src/components/Datatable/TableIndeterminateCheckboxRow.tsx +++ b/src/components/Datatable/TableIndeterminateCheckboxRow.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Checkbox } from '@blueprintjs/core'; import { CellType } from '@/constants'; diff --git a/src/components/Datatable/TableLoading.tsx b/src/components/Datatable/TableLoading.tsx index 7499d243a..f94d1765d 100644 --- a/src/components/Datatable/TableLoading.tsx +++ b/src/components/Datatable/TableLoading.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Spinner } from '@blueprintjs/core'; diff --git a/src/components/Datatable/TableNoResultsRow.tsx b/src/components/Datatable/TableNoResultsRow.tsx index c1760d551..8a718d29e 100644 --- a/src/components/Datatable/TableNoResultsRow.tsx +++ b/src/components/Datatable/TableNoResultsRow.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useContext } from 'react'; import intl from 'react-intl-universal'; import TableContext from './TableContext'; diff --git a/src/components/Datatable/TablePage.tsx b/src/components/Datatable/TablePage.tsx index 2d6a2771f..0114b3e7f 100644 --- a/src/components/Datatable/TablePage.tsx +++ b/src/components/Datatable/TablePage.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useContext } from 'react'; import TableContext from './TableContext'; diff --git a/src/components/Datatable/TablePagination.tsx b/src/components/Datatable/TablePagination.tsx index 7f3b6d8ee..56dea12d3 100644 --- a/src/components/Datatable/TablePagination.tsx +++ b/src/components/Datatable/TablePagination.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback, useContext } from 'react'; import { If, Pagination } from '@/components'; import TableContext from './TableContext'; diff --git a/src/components/Datatable/TableRow.tsx b/src/components/Datatable/TableRow.tsx index 576466059..148ff3248 100644 --- a/src/components/Datatable/TableRow.tsx +++ b/src/components/Datatable/TableRow.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback, useContext } from 'react'; import { ContextMenu } from '@/components'; import classNames from 'classnames'; diff --git a/src/components/Datatable/TableRows.tsx b/src/components/Datatable/TableRows.tsx index 976ccbe42..f3cdaee23 100644 --- a/src/components/Datatable/TableRows.tsx +++ b/src/components/Datatable/TableRows.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useContext } from "react"; import TableContext from "./TableContext"; diff --git a/src/components/Datatable/TableSkeletonRows.tsx b/src/components/Datatable/TableSkeletonRows.tsx index 13fa75396..852644088 100644 --- a/src/components/Datatable/TableSkeletonRows.tsx +++ b/src/components/Datatable/TableSkeletonRows.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useContext } from 'react'; import clsx from 'classnames'; import TableContext from './TableContext'; diff --git a/src/components/Datatable/TableTBody.tsx b/src/components/Datatable/TableTBody.tsx index e8be72c47..a36b0c0c6 100644 --- a/src/components/Datatable/TableTBody.tsx +++ b/src/components/Datatable/TableTBody.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useContext } from 'react'; import { ScrollSyncPane } from 'react-scroll-sync'; import TableContext from './TableContext'; diff --git a/src/components/Datatable/TableVirtualizedRows.tsx b/src/components/Datatable/TableVirtualizedRows.tsx index 17eacd70d..563575b12 100644 --- a/src/components/Datatable/TableVirtualizedRows.tsx +++ b/src/components/Datatable/TableVirtualizedRows.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useContext } from 'react'; import { WindowScroller, AutoSizer, List } from 'react-virtualized'; import { CLASSES } from '@/constants/classes'; diff --git a/src/components/Datatable/TableWrapper.tsx b/src/components/Datatable/TableWrapper.tsx index d98fab9b0..b894abd66 100644 --- a/src/components/Datatable/TableWrapper.tsx +++ b/src/components/Datatable/TableWrapper.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useContext } from 'react'; import clsx from 'classnames'; import { ScrollSync } from 'react-scroll-sync'; diff --git a/src/components/Datatable/index.tsx b/src/components/Datatable/index.tsx index 4dbbdf1bd..eb5922b54 100644 --- a/src/components/Datatable/index.tsx +++ b/src/components/Datatable/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export * from './CellForceWidth'; export * from './DataTable'; export * from './DatatableEditable'; diff --git a/src/components/Datatable/utils.tsx b/src/components/Datatable/utils.tsx index 0a7ea1308..74c4a7d0e 100644 --- a/src/components/Datatable/utils.tsx +++ b/src/components/Datatable/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; export const isCellLoading = (loading, cellsCoords, rowIndex, columnId) => { diff --git a/src/components/Details/index.tsx b/src/components/Details/index.tsx index 80aceaad1..e6803b069 100644 --- a/src/components/Details/index.tsx +++ b/src/components/Details/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; diff --git a/src/components/Dialog/Dialog.tsx b/src/components/Dialog/Dialog.tsx index 93d4aebd6..6e32a99af 100644 --- a/src/components/Dialog/Dialog.tsx +++ b/src/components/Dialog/Dialog.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Dialog } from '@blueprintjs/core'; import withDialogActions from '@/containers/Dialog/withDialogActions'; diff --git a/src/components/Dialog/DialogContent.tsx b/src/components/Dialog/DialogContent.tsx index cb438f499..895002eea 100644 --- a/src/components/Dialog/DialogContent.tsx +++ b/src/components/Dialog/DialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Spinner, Classes } from '@blueprintjs/core'; import classNames from 'classnames'; diff --git a/src/components/Dialog/DialogFooter.tsx b/src/components/Dialog/DialogFooter.tsx index 604015683..3be01b902 100644 --- a/src/components/Dialog/DialogFooter.tsx +++ b/src/components/Dialog/DialogFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { Classes } from '@blueprintjs/core'; diff --git a/src/components/Dialog/DialogFooterActions.tsx b/src/components/Dialog/DialogFooterActions.tsx index bf7514527..8de8439f6 100644 --- a/src/components/Dialog/DialogFooterActions.tsx +++ b/src/components/Dialog/DialogFooterActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { Classes } from '@blueprintjs/core'; diff --git a/src/components/Dialog/DialogSuspense.tsx b/src/components/Dialog/DialogSuspense.tsx index 56ed625b9..9fe4a9972 100644 --- a/src/components/Dialog/DialogSuspense.tsx +++ b/src/components/Dialog/DialogSuspense.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { Suspense } from 'react'; import { Classes, Spinner } from '@blueprintjs/core'; diff --git a/src/components/Dialog/index.tsx b/src/components/Dialog/index.tsx index 73cb29f89..09f7847a3 100644 --- a/src/components/Dialog/index.tsx +++ b/src/components/Dialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export * from './Dialog'; diff --git a/src/components/DialogReduxConnect.tsx b/src/components/DialogReduxConnect.tsx index 4b64b751a..e8da31168 100644 --- a/src/components/DialogReduxConnect.tsx +++ b/src/components/DialogReduxConnect.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { isDialogOpenFactory, diff --git a/src/components/Dragzone/index.tsx b/src/components/Dragzone/index.tsx index d52fcb9ef..e964fb144 100644 --- a/src/components/Dragzone/index.tsx +++ b/src/components/Dragzone/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useState, useCallback, useEffect } from 'react'; import { useDropzone } from 'react-dropzone'; import classNames from 'classnames'; diff --git a/src/components/Drawer/Drawer.tsx b/src/components/Drawer/Drawer.tsx index 22c17e90a..ed9aac10c 100644 --- a/src/components/Drawer/Drawer.tsx +++ b/src/components/Drawer/Drawer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Position, Drawer } from '@blueprintjs/core'; diff --git a/src/components/Drawer/DrawerActionsBar.tsx b/src/components/Drawer/DrawerActionsBar.tsx index 6a1727582..13ecc12de 100644 --- a/src/components/Drawer/DrawerActionsBar.tsx +++ b/src/components/Drawer/DrawerActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/components/Drawer/DrawerBody.tsx b/src/components/Drawer/DrawerBody.tsx index 436b781e9..be7f34ac4 100644 --- a/src/components/Drawer/DrawerBody.tsx +++ b/src/components/Drawer/DrawerBody.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Classes } from '@blueprintjs/core'; import { LoadingIndicator } from '../Indicator'; diff --git a/src/components/Drawer/DrawerHeaderContent.tsx b/src/components/Drawer/DrawerHeaderContent.tsx index 387de49f1..91517087e 100644 --- a/src/components/Drawer/DrawerHeaderContent.tsx +++ b/src/components/Drawer/DrawerHeaderContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FormattedMessage as T } from '@/components'; import { Classes, Icon, H4, Button } from '@blueprintjs/core'; diff --git a/src/components/Drawer/DrawerInsider.tsx b/src/components/Drawer/DrawerInsider.tsx index f885c07c3..43f611749 100644 --- a/src/components/Drawer/DrawerInsider.tsx +++ b/src/components/Drawer/DrawerInsider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classnames from 'classnames'; import { LoadingIndicator } from '../Indicator'; diff --git a/src/components/Drawer/DrawerMainTabs.tsx b/src/components/Drawer/DrawerMainTabs.tsx index d2052e1f2..ff33a1d79 100644 --- a/src/components/Drawer/DrawerMainTabs.tsx +++ b/src/components/Drawer/DrawerMainTabs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Tabs } from '@blueprintjs/core'; import styled from 'styled-components'; diff --git a/src/components/Drawer/DrawerProvider.tsx b/src/components/Drawer/DrawerProvider.tsx index 7b086cd32..f89256ba0 100644 --- a/src/components/Drawer/DrawerProvider.tsx +++ b/src/components/Drawer/DrawerProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useContext } from 'react'; const DrawerContext = createContext(); diff --git a/src/components/Drawer/DrawerSuspense.tsx b/src/components/Drawer/DrawerSuspense.tsx index 24609844d..cfe80fbaa 100644 --- a/src/components/Drawer/DrawerSuspense.tsx +++ b/src/components/Drawer/DrawerSuspense.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { Suspense } from 'react'; import { DrawerLoading } from '@/components'; diff --git a/src/components/Drawer/index.ts b/src/components/Drawer/index.ts index e514db090..1afdb8c77 100644 --- a/src/components/Drawer/index.ts +++ b/src/components/Drawer/index.ts @@ -1,3 +1,4 @@ +// @ts-nocheck export * from './Drawer'; export * from './DrawerSuspense'; export * from './DrawerHeaderContent'; diff --git a/src/components/EmptyStatus/EmptyStatus.tsx b/src/components/EmptyStatus/EmptyStatus.tsx index 7419192c0..1b05c76d6 100644 --- a/src/components/EmptyStatus/EmptyStatus.tsx +++ b/src/components/EmptyStatus/EmptyStatus.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; diff --git a/src/components/EmptyStatus/index.ts b/src/components/EmptyStatus/index.ts index a517c3eef..497836b0a 100644 --- a/src/components/EmptyStatus/index.ts +++ b/src/components/EmptyStatus/index.ts @@ -1 +1,2 @@ +// @ts-nocheck export * from './EmptyStatus'; diff --git a/src/components/ErrorBoundary/index.tsx b/src/components/ErrorBoundary/index.tsx index 5a0789e50..15b353a01 100644 --- a/src/components/ErrorBoundary/index.tsx +++ b/src/components/ErrorBoundary/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import PropTypes from 'prop-types'; diff --git a/src/components/ErrorMessage/index.tsx b/src/components/ErrorMessage/index.tsx index f9a6f0e95..7e696a050 100644 --- a/src/components/ErrorMessage/index.tsx +++ b/src/components/ErrorMessage/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { get } from 'lodash'; diff --git a/src/components/ExchangeRate/DetailExchangeRate.tsx b/src/components/ExchangeRate/DetailExchangeRate.tsx index 1cba37733..72eb14d70 100644 --- a/src/components/ExchangeRate/DetailExchangeRate.tsx +++ b/src/components/ExchangeRate/DetailExchangeRate.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import * as R from 'ramda'; diff --git a/src/components/ExchangeRate/ExchangeRateInput.tsx b/src/components/ExchangeRate/ExchangeRateInput.tsx index 81ec4bc9d..9877f5dee 100644 --- a/src/components/ExchangeRate/ExchangeRateInput.tsx +++ b/src/components/ExchangeRate/ExchangeRateInput.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { ControlGroup } from '@blueprintjs/core'; diff --git a/src/components/ExchangeRate/ExchangeRateMutedField.tsx b/src/components/ExchangeRate/ExchangeRateMutedField.tsx index 133f7763d..77c4489d8 100644 --- a/src/components/ExchangeRate/ExchangeRateMutedField.tsx +++ b/src/components/ExchangeRate/ExchangeRateMutedField.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import intl from 'react-intl-universal'; diff --git a/src/components/ExchangeRate/index.tsx b/src/components/ExchangeRate/index.tsx index 59cab6c47..bc2fc1e25 100644 --- a/src/components/ExchangeRate/index.tsx +++ b/src/components/ExchangeRate/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export * from './ExchangeRateInput'; export * from './ExchangeRateMutedField' export * from './DetailExchangeRate' \ No newline at end of file diff --git a/src/components/FeatureGuard/FeatureCan.tsx b/src/components/FeatureGuard/FeatureCan.tsx index 9e21441b6..7833b8680 100644 --- a/src/components/FeatureGuard/FeatureCan.tsx +++ b/src/components/FeatureGuard/FeatureCan.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as R from 'ramda'; import withFeatureCan from './withFeatureCan'; diff --git a/src/components/FeatureGuard/index.tsx b/src/components/FeatureGuard/index.tsx index d8e32e3b0..54566a4a1 100644 --- a/src/components/FeatureGuard/index.tsx +++ b/src/components/FeatureGuard/index.tsx @@ -1 +1,2 @@ +// @ts-nocheck export * from './FeatureCan'; \ No newline at end of file diff --git a/src/components/FeatureGuard/withFeatureCan.tsx b/src/components/FeatureGuard/withFeatureCan.tsx index 33dc52a68..a287c7630 100644 --- a/src/components/FeatureGuard/withFeatureCan.tsx +++ b/src/components/FeatureGuard/withFeatureCan.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getDashboardFeaturesSelector } from '@/store/dashboard/dashboard.selectors'; diff --git a/src/components/FinancialReport/index.tsx b/src/components/FinancialReport/index.tsx index 50b418c3f..99b227b0d 100644 --- a/src/components/FinancialReport/index.tsx +++ b/src/components/FinancialReport/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/components/FinancialSheet/FinancialSheet.tsx b/src/components/FinancialSheet/FinancialSheet.tsx index 03da7f3f6..7f3153fc8 100644 --- a/src/components/FinancialSheet/FinancialSheet.tsx +++ b/src/components/FinancialSheet/FinancialSheet.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo, useCallback } from 'react'; import moment from 'moment'; import intl from 'react-intl-universal'; diff --git a/src/components/FinancialSheet/FinancialSheetSkeleton.tsx b/src/components/FinancialSheet/FinancialSheetSkeleton.tsx index 46583943d..9d2fabee9 100644 --- a/src/components/FinancialSheet/FinancialSheetSkeleton.tsx +++ b/src/components/FinancialSheet/FinancialSheetSkeleton.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/components/FinancialSheet/ReportDataTable.tsx b/src/components/FinancialSheet/ReportDataTable.tsx index 3ffa40cb0..bf9c050a9 100644 --- a/src/components/FinancialSheet/ReportDataTable.tsx +++ b/src/components/FinancialSheet/ReportDataTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import styled from 'styled-components'; import { DataTable } from '../Datatable'; diff --git a/src/components/FinancialSheet/StyledFinancialSheet.tsx b/src/components/FinancialSheet/StyledFinancialSheet.tsx index 84e521b1f..f949f4487 100644 --- a/src/components/FinancialSheet/StyledFinancialSheet.tsx +++ b/src/components/FinancialSheet/StyledFinancialSheet.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import styled from 'styled-components'; export const FinancialSheetRoot = styled.div` diff --git a/src/components/FinancialSheet/index.tsx b/src/components/FinancialSheet/index.tsx index 6a366b26f..6fb72466d 100644 --- a/src/components/FinancialSheet/index.tsx +++ b/src/components/FinancialSheet/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export * from './FinancialSheet'; export * from './FinancialSheetSkeleton'; export * from './ReportDataTable'; \ No newline at end of file diff --git a/src/components/FinancialStatement/index.tsx b/src/components/FinancialStatement/index.tsx index e077ffdb4..4ab6d50cc 100644 --- a/src/components/FinancialStatement/index.tsx +++ b/src/components/FinancialStatement/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/components/FlexGrid/Flex.style.tsx b/src/components/FlexGrid/Flex.style.tsx index 49fcb26b8..b4ab9e78f 100644 --- a/src/components/FlexGrid/Flex.style.tsx +++ b/src/components/FlexGrid/Flex.style.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import styled from 'styled-components'; import { FlexProps } from './interfaces'; diff --git a/src/components/FlexGrid/Flex.tsx b/src/components/FlexGrid/Flex.tsx index 66dbb14f3..2844f3bcc 100644 --- a/src/components/FlexGrid/Flex.tsx +++ b/src/components/FlexGrid/Flex.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as React from 'react'; import { FlexProps } from './interfaces'; import { FlexItem } from './FlexItem'; diff --git a/src/components/FlexGrid/FlexItem.style.tsx b/src/components/FlexGrid/FlexItem.style.tsx index a57556413..e79c3ef5b 100644 --- a/src/components/FlexGrid/FlexItem.style.tsx +++ b/src/components/FlexGrid/FlexItem.style.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import styled from 'styled-components'; import { ItemProps } from './interfaces'; diff --git a/src/components/FlexGrid/FlexItem.tsx b/src/components/FlexGrid/FlexItem.tsx index 3e9902137..dfc886f95 100644 --- a/src/components/FlexGrid/FlexItem.tsx +++ b/src/components/FlexGrid/FlexItem.tsx @@ -1 +1,2 @@ +// @ts-nocheck export * from './FlexItem.style'; \ No newline at end of file diff --git a/src/components/FlexGrid/index.ts b/src/components/FlexGrid/index.ts index ee298fdc1..5bdaf6dca 100644 --- a/src/components/FlexGrid/index.ts +++ b/src/components/FlexGrid/index.ts @@ -1,3 +1,4 @@ +// @ts-nocheck export * from './Flex.style'; export * from './Flex'; export * from './FlexItem.style'; diff --git a/src/components/FlexGrid/interfaces.ts b/src/components/FlexGrid/interfaces.ts index 34bca7767..8741beb4e 100644 --- a/src/components/FlexGrid/interfaces.ts +++ b/src/components/FlexGrid/interfaces.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import { HTMLAttributes, Component, StyleHTMLAttributes } from 'react'; export type Range = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12; diff --git a/src/components/FormattedMessage/index.tsx b/src/components/FormattedMessage/index.tsx index 357bc1ee7..b23418325 100644 --- a/src/components/FormattedMessage/index.tsx +++ b/src/components/FormattedMessage/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; export function FormattedMessage({ id, values }) { diff --git a/src/components/Forms/BlueprintFormik.tsx b/src/components/Forms/BlueprintFormik.tsx index 497049ad4..e8ca5e560 100644 --- a/src/components/Forms/BlueprintFormik.tsx +++ b/src/components/Forms/BlueprintFormik.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { FormGroup, InputGroup, diff --git a/src/components/Forms/Checkbox.tsx b/src/components/Forms/Checkbox.tsx index d2d9551a4..a94ceade1 100644 --- a/src/components/Forms/Checkbox.tsx +++ b/src/components/Forms/Checkbox.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useState } from 'react'; import { Checkbox as BPCheckbox, diff --git a/src/components/Forms/FMoneyInputGroup.tsx b/src/components/Forms/FMoneyInputGroup.tsx index 2bc69fd35..c0297e52d 100644 --- a/src/components/Forms/FMoneyInputGroup.tsx +++ b/src/components/Forms/FMoneyInputGroup.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent } from '@blueprintjs/core'; import { Field, getIn } from 'formik'; diff --git a/src/components/Forms/FormObserver.tsx b/src/components/Forms/FormObserver.tsx index 7faa885d2..ab55fe451 100644 --- a/src/components/Forms/FormObserver.tsx +++ b/src/components/Forms/FormObserver.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useEffect } from 'react' diff --git a/src/components/Forms/FormikObserver.tsx b/src/components/Forms/FormikObserver.tsx index 82581001d..aa1327b67 100644 --- a/src/components/Forms/FormikObserver.tsx +++ b/src/components/Forms/FormikObserver.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useFormikContext } from 'formik'; import { useDeepCompareEffect } from '@/hooks/utils'; diff --git a/src/components/Forms/InputPrepend.tsx b/src/components/Forms/InputPrepend.tsx index f962e221b..f6ff25202 100644 --- a/src/components/Forms/InputPrepend.tsx +++ b/src/components/Forms/InputPrepend.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; export default function InputPrepend({ children }) { diff --git a/src/components/Forms/InputPrependButton.tsx b/src/components/Forms/InputPrependButton.tsx index 14d6937f1..5d8255383 100644 --- a/src/components/Forms/InputPrependButton.tsx +++ b/src/components/Forms/InputPrependButton.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import classNames from 'classnames'; import { Button, Tooltip, Classes } from '@blueprintjs/core'; diff --git a/src/components/Forms/InputPrependOptions.tsx b/src/components/Forms/InputPrependOptions.tsx deleted file mode 100644 index e69de29bb..000000000 diff --git a/src/components/Forms/InputPrependText.tsx b/src/components/Forms/InputPrependText.tsx index 3da7919f9..a1129a884 100644 --- a/src/components/Forms/InputPrependText.tsx +++ b/src/components/Forms/InputPrependText.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; export function InputPrependText({ text, children }) { diff --git a/src/components/Forms/MoneyInputGroup/CurrencyInputProps.ts b/src/components/Forms/MoneyInputGroup/CurrencyInputProps.ts index 6c111d955..b386feab9 100644 --- a/src/components/Forms/MoneyInputGroup/CurrencyInputProps.ts +++ b/src/components/Forms/MoneyInputGroup/CurrencyInputProps.ts @@ -1,3 +1,4 @@ +// @ts-nocheck type Overwrite = Pick> & U; export type Separator = ',' | '.'; diff --git a/src/components/Forms/MoneyInputGroup/index.tsx b/src/components/Forms/MoneyInputGroup/index.tsx index 7e52d51ca..f050be0d4 100644 --- a/src/components/Forms/MoneyInputGroup/index.tsx +++ b/src/components/Forms/MoneyInputGroup/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { FC, useState, useEffect, useRef } from 'react'; import { InputGroup } from '@blueprintjs/core'; import { CurrencyInputProps } from './CurrencyInputProps'; diff --git a/src/components/Forms/MoneyInputGroup/utils/__tests__/addSeparators.spec.ts b/src/components/Forms/MoneyInputGroup/utils/__tests__/addSeparators.spec.ts index 698e2e455..a9d088e98 100644 --- a/src/components/Forms/MoneyInputGroup/utils/__tests__/addSeparators.spec.ts +++ b/src/components/Forms/MoneyInputGroup/utils/__tests__/addSeparators.spec.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import { addSeparators } from '../addSeparators'; describe('Separators', () => { diff --git a/src/components/Forms/MoneyInputGroup/utils/__tests__/cleanValue.spec.ts b/src/components/Forms/MoneyInputGroup/utils/__tests__/cleanValue.spec.ts index d60991798..4bdc4f899 100644 --- a/src/components/Forms/MoneyInputGroup/utils/__tests__/cleanValue.spec.ts +++ b/src/components/Forms/MoneyInputGroup/utils/__tests__/cleanValue.spec.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import { cleanValue } from '../cleanValue'; describe('cleanValue', () => { diff --git a/src/components/Forms/MoneyInputGroup/utils/__tests__/fixedDecimalValue.spec.ts b/src/components/Forms/MoneyInputGroup/utils/__tests__/fixedDecimalValue.spec.ts index 73526b9bd..201dac024 100644 --- a/src/components/Forms/MoneyInputGroup/utils/__tests__/fixedDecimalValue.spec.ts +++ b/src/components/Forms/MoneyInputGroup/utils/__tests__/fixedDecimalValue.spec.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import { fixedDecimalValue } from '../fixedDecimalValue'; describe('fixedDecimalValue', () => { diff --git a/src/components/Forms/MoneyInputGroup/utils/__tests__/formatValue.spec.ts b/src/components/Forms/MoneyInputGroup/utils/__tests__/formatValue.spec.ts index 3bcb5d579..d40268a56 100644 --- a/src/components/Forms/MoneyInputGroup/utils/__tests__/formatValue.spec.ts +++ b/src/components/Forms/MoneyInputGroup/utils/__tests__/formatValue.spec.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import { formatValue } from '../formatValue'; describe('formatValue', () => { diff --git a/src/components/Forms/MoneyInputGroup/utils/__tests__/isNumber.spec.ts b/src/components/Forms/MoneyInputGroup/utils/__tests__/isNumber.spec.ts index 08cdaca18..e9738cd55 100644 --- a/src/components/Forms/MoneyInputGroup/utils/__tests__/isNumber.spec.ts +++ b/src/components/Forms/MoneyInputGroup/utils/__tests__/isNumber.spec.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import { isNumber } from '../isNumber'; describe('isNumber', () => { diff --git a/src/components/Forms/MoneyInputGroup/utils/__tests__/padTrimValue.spec.ts b/src/components/Forms/MoneyInputGroup/utils/__tests__/padTrimValue.spec.ts index 2606b8a31..6c7df4aec 100644 --- a/src/components/Forms/MoneyInputGroup/utils/__tests__/padTrimValue.spec.ts +++ b/src/components/Forms/MoneyInputGroup/utils/__tests__/padTrimValue.spec.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import { padTrimValue } from '../padTrimValue'; describe('padTrimValue', () => { diff --git a/src/components/Forms/MoneyInputGroup/utils/__tests__/parseAbbrValue.spec.ts b/src/components/Forms/MoneyInputGroup/utils/__tests__/parseAbbrValue.spec.ts index 62fa39c90..ba234aaa0 100644 --- a/src/components/Forms/MoneyInputGroup/utils/__tests__/parseAbbrValue.spec.ts +++ b/src/components/Forms/MoneyInputGroup/utils/__tests__/parseAbbrValue.spec.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import { abbrValue, parseAbbrValue } from '../parseAbbrValue'; describe('abbrValue', () => { diff --git a/src/components/Forms/MoneyInputGroup/utils/__tests__/removeInvalidChars.spec.ts b/src/components/Forms/MoneyInputGroup/utils/__tests__/removeInvalidChars.spec.ts index 1a899856a..ad3cbb514 100644 --- a/src/components/Forms/MoneyInputGroup/utils/__tests__/removeInvalidChars.spec.ts +++ b/src/components/Forms/MoneyInputGroup/utils/__tests__/removeInvalidChars.spec.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import { removeInvalidChars } from '../removeInvalidChars'; describe('removeInvalidChars', () => { diff --git a/src/components/Forms/MoneyInputGroup/utils/__tests__/removeSeparators.spec.ts b/src/components/Forms/MoneyInputGroup/utils/__tests__/removeSeparators.spec.ts index a23f48337..6a16543f2 100644 --- a/src/components/Forms/MoneyInputGroup/utils/__tests__/removeSeparators.spec.ts +++ b/src/components/Forms/MoneyInputGroup/utils/__tests__/removeSeparators.spec.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import { removeSeparators } from '../removeSeparators'; describe('removeSeparators', () => { diff --git a/src/components/Forms/MoneyInputGroup/utils/addSeparators.ts b/src/components/Forms/MoneyInputGroup/utils/addSeparators.ts index cabfd85fd..1f208b723 100644 --- a/src/components/Forms/MoneyInputGroup/utils/addSeparators.ts +++ b/src/components/Forms/MoneyInputGroup/utils/addSeparators.ts @@ -1,3 +1,4 @@ +// @ts-nocheck /** * Add group separator to value eg. 1000 > 1,000 */ diff --git a/src/components/Forms/MoneyInputGroup/utils/cleanValue.ts b/src/components/Forms/MoneyInputGroup/utils/cleanValue.ts index 54ee0344d..c417562a4 100644 --- a/src/components/Forms/MoneyInputGroup/utils/cleanValue.ts +++ b/src/components/Forms/MoneyInputGroup/utils/cleanValue.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import { parseAbbrValue } from './parseAbbrValue'; import { removeSeparators } from './removeSeparators'; import { removeInvalidChars } from './removeInvalidChars'; diff --git a/src/components/Forms/MoneyInputGroup/utils/escapeRegExp.ts b/src/components/Forms/MoneyInputGroup/utils/escapeRegExp.ts index 562c67da5..985504c14 100644 --- a/src/components/Forms/MoneyInputGroup/utils/escapeRegExp.ts +++ b/src/components/Forms/MoneyInputGroup/utils/escapeRegExp.ts @@ -1,3 +1,4 @@ +// @ts-nocheck /** * Escape regex char * diff --git a/src/components/Forms/MoneyInputGroup/utils/fixedDecimalValue.ts b/src/components/Forms/MoneyInputGroup/utils/fixedDecimalValue.ts index 47c2b7c36..bbc4425bd 100644 --- a/src/components/Forms/MoneyInputGroup/utils/fixedDecimalValue.ts +++ b/src/components/Forms/MoneyInputGroup/utils/fixedDecimalValue.ts @@ -1,3 +1,4 @@ +// @ts-nocheck export const fixedDecimalValue = ( value: string, decimalSeparator: string, diff --git a/src/components/Forms/MoneyInputGroup/utils/formatValue.ts b/src/components/Forms/MoneyInputGroup/utils/formatValue.ts index de435e405..80d7ecfb4 100644 --- a/src/components/Forms/MoneyInputGroup/utils/formatValue.ts +++ b/src/components/Forms/MoneyInputGroup/utils/formatValue.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import { addSeparators } from './addSeparators'; type Props = { diff --git a/src/components/Forms/MoneyInputGroup/utils/index.tsx b/src/components/Forms/MoneyInputGroup/utils/index.tsx index b63670c01..618e41712 100644 --- a/src/components/Forms/MoneyInputGroup/utils/index.tsx +++ b/src/components/Forms/MoneyInputGroup/utils/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export * from './cleanValue'; export * from './fixedDecimalValue'; export * from './formatValue'; diff --git a/src/components/Forms/MoneyInputGroup/utils/isNumber.ts b/src/components/Forms/MoneyInputGroup/utils/isNumber.ts index df80de6d9..733eb8974 100644 --- a/src/components/Forms/MoneyInputGroup/utils/isNumber.ts +++ b/src/components/Forms/MoneyInputGroup/utils/isNumber.ts @@ -1 +1,2 @@ +// @ts-nocheck export const isNumber = (input: string): boolean => RegExp(/\d/, 'gi').test(input); diff --git a/src/components/Forms/MoneyInputGroup/utils/padTrimValue.ts b/src/components/Forms/MoneyInputGroup/utils/padTrimValue.ts index 9840389ab..389a478fe 100644 --- a/src/components/Forms/MoneyInputGroup/utils/padTrimValue.ts +++ b/src/components/Forms/MoneyInputGroup/utils/padTrimValue.ts @@ -1,3 +1,4 @@ +// @ts-nocheck export const padTrimValue = (value: string, decimalSeparator = '.', precision?: number): string => { if (!precision || value === '' || value === undefined) { return value; diff --git a/src/components/Forms/MoneyInputGroup/utils/parseAbbrValue.ts b/src/components/Forms/MoneyInputGroup/utils/parseAbbrValue.ts index 9e3b7ef8b..b49b8792b 100644 --- a/src/components/Forms/MoneyInputGroup/utils/parseAbbrValue.ts +++ b/src/components/Forms/MoneyInputGroup/utils/parseAbbrValue.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import { escapeRegExp } from './escapeRegExp'; /** diff --git a/src/components/Forms/MoneyInputGroup/utils/removeInvalidChars.ts b/src/components/Forms/MoneyInputGroup/utils/removeInvalidChars.ts index c05cdc9f9..669d4ac75 100644 --- a/src/components/Forms/MoneyInputGroup/utils/removeInvalidChars.ts +++ b/src/components/Forms/MoneyInputGroup/utils/removeInvalidChars.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import { escapeRegExp } from './escapeRegExp'; /** diff --git a/src/components/Forms/MoneyInputGroup/utils/removeSeparators.ts b/src/components/Forms/MoneyInputGroup/utils/removeSeparators.ts index 01f29c663..7f96e58ce 100644 --- a/src/components/Forms/MoneyInputGroup/utils/removeSeparators.ts +++ b/src/components/Forms/MoneyInputGroup/utils/removeSeparators.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import { escapeRegExp } from './escapeRegExp'; /** diff --git a/src/components/Grid/Col.tsx b/src/components/Grid/Col.tsx index f07e572fe..0967d88ee 100644 --- a/src/components/Grid/Col.tsx +++ b/src/components/Grid/Col.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import classNames from 'classnames'; import PropTypes from 'prop-types'; diff --git a/src/components/Grid/Row.tsx b/src/components/Grid/Row.tsx index 79a8c6732..eb6c3d946 100644 --- a/src/components/Grid/Row.tsx +++ b/src/components/Grid/Row.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import classNames from 'classnames'; import PropTypes from 'prop-types'; diff --git a/src/components/Grid/index.ts b/src/components/Grid/index.ts index c0337a2ab..97ea24e0b 100644 --- a/src/components/Grid/index.ts +++ b/src/components/Grid/index.ts @@ -1,2 +1,3 @@ +// @ts-nocheck export * from './Col' export * from './Row' \ No newline at end of file diff --git a/src/components/Guards/EnsureOrganizationIsNotReady.tsx b/src/components/Guards/EnsureOrganizationIsNotReady.tsx index ad6e92eeb..d139103d3 100644 --- a/src/components/Guards/EnsureOrganizationIsNotReady.tsx +++ b/src/components/Guards/EnsureOrganizationIsNotReady.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { connect } from 'react-redux'; import { Redirect } from 'react-router-dom'; diff --git a/src/components/Guards/EnsureOrganizationIsReady.tsx b/src/components/Guards/EnsureOrganizationIsReady.tsx index 3f2f4711b..355452fa9 100644 --- a/src/components/Guards/EnsureOrganizationIsReady.tsx +++ b/src/components/Guards/EnsureOrganizationIsReady.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { connect } from 'react-redux'; import { Redirect } from 'react-router-dom'; diff --git a/src/components/Guards/EnsureSubscriptionIsActive.tsx b/src/components/Guards/EnsureSubscriptionIsActive.tsx index ed5ed29db..59aea37f6 100644 --- a/src/components/Guards/EnsureSubscriptionIsActive.tsx +++ b/src/components/Guards/EnsureSubscriptionIsActive.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { includes } from 'lodash'; diff --git a/src/components/Guards/EnsureSubscriptionsIsActive.tsx b/src/components/Guards/EnsureSubscriptionsIsActive.tsx index 32581e00a..f945c5678 100644 --- a/src/components/Guards/EnsureSubscriptionsIsActive.tsx +++ b/src/components/Guards/EnsureSubscriptionsIsActive.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { includes } from 'lodash'; diff --git a/src/components/Guards/EnsureSubscriptionsIsInactive.tsx b/src/components/Guards/EnsureSubscriptionsIsInactive.tsx index c5ae52c15..183215c14 100644 --- a/src/components/Guards/EnsureSubscriptionsIsInactive.tsx +++ b/src/components/Guards/EnsureSubscriptionsIsInactive.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { includes } from 'lodash'; diff --git a/src/components/Guards/PrivateRoute.tsx b/src/components/Guards/PrivateRoute.tsx index b47e2590b..8e8e167b9 100644 --- a/src/components/Guards/PrivateRoute.tsx +++ b/src/components/Guards/PrivateRoute.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import BodyClassName from 'react-body-classname'; import { Redirect } from 'react-router-dom'; diff --git a/src/components/Hint/FieldHint.tsx b/src/components/Hint/FieldHint.tsx index 6a041bd40..eee87299f 100644 --- a/src/components/Hint/FieldHint.tsx +++ b/src/components/Hint/FieldHint.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Tooltip } from '@blueprintjs/core'; import { Icon } from '../Icon'; diff --git a/src/components/Hint/FieldRequiredHint.tsx b/src/components/Hint/FieldRequiredHint.tsx index 35b45de26..896786595 100644 --- a/src/components/Hint/FieldRequiredHint.tsx +++ b/src/components/Hint/FieldRequiredHint.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; export function FieldRequiredHint() { diff --git a/src/components/Hint/RequiredHint.tsx b/src/components/Hint/RequiredHint.tsx index 9b2009b29..7cd208dd0 100644 --- a/src/components/Hint/RequiredHint.tsx +++ b/src/components/Hint/RequiredHint.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; export function RequiredHint() { diff --git a/src/components/Hint/index.ts b/src/components/Hint/index.ts index 546644b80..95ef70e2e 100644 --- a/src/components/Hint/index.ts +++ b/src/components/Hint/index.ts @@ -1,3 +1,4 @@ +// @ts-nocheck export * from './FieldHint'; export * from './FieldRequiredHint'; export * from './RequiredHint'; diff --git a/src/components/Icon/index.tsx b/src/components/Icon/index.tsx index 9bcd0cf2b..83ff5b2ae 100644 --- a/src/components/Icon/index.tsx +++ b/src/components/Icon/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck /* * Copyright 2017 Palantir Technologies, Inc. All rights reserved. * diff --git a/src/components/Indicator/CloudLoadingIndicator.tsx b/src/components/Indicator/CloudLoadingIndicator.tsx index 1f208249c..b05cc59ae 100644 --- a/src/components/Indicator/CloudLoadingIndicator.tsx +++ b/src/components/Indicator/CloudLoadingIndicator.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import { Spinner } from '@blueprintjs/core'; diff --git a/src/components/Indicator/LoadingIndicator.tsx b/src/components/Indicator/LoadingIndicator.tsx index adc5f1db8..590d8e298 100644 --- a/src/components/Indicator/LoadingIndicator.tsx +++ b/src/components/Indicator/LoadingIndicator.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useState, useEffect, useMemo } from 'react'; import { Spinner } from '@blueprintjs/core'; diff --git a/src/components/Indicator/index.ts b/src/components/Indicator/index.ts index 601838058..9c4e81ed6 100644 --- a/src/components/Indicator/index.ts +++ b/src/components/Indicator/index.ts @@ -1,2 +1,3 @@ +// @ts-nocheck export * from './CloudLoadingIndicator'; export * from './LoadingIndicator'; diff --git a/src/components/IntersectionObserver/index.tsx b/src/components/IntersectionObserver/index.tsx index cf4ac300e..0a4cc8183 100644 --- a/src/components/IntersectionObserver/index.tsx +++ b/src/components/IntersectionObserver/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useIntersectionObserver } from '@/hooks/utils'; diff --git a/src/components/Items/ItemsListField.tsx b/src/components/Items/ItemsListField.tsx index 7ec302cd5..3be665b13 100644 --- a/src/components/Items/ItemsListField.tsx +++ b/src/components/Items/ItemsListField.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback, useMemo, useEffect, useState } from 'react'; import { MenuItem } from '@blueprintjs/core'; import { ListSelect, T } from '@/components'; diff --git a/src/components/Items/ItemsMultiSelect.tsx b/src/components/Items/ItemsMultiSelect.tsx index 7068e1b27..31c2a18cb 100644 --- a/src/components/Items/ItemsMultiSelect.tsx +++ b/src/components/Items/ItemsMultiSelect.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import { MenuItem } from '@blueprintjs/core'; import { MultiSelect } from '@/components'; diff --git a/src/components/Items/ItemsSuggestField.tsx b/src/components/Items/ItemsSuggestField.tsx index 4efd80c53..1c000c017 100644 --- a/src/components/Items/ItemsSuggestField.tsx +++ b/src/components/Items/ItemsSuggestField.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useState, useCallback, useEffect, useMemo } from 'react'; import { MenuItem } from '@blueprintjs/core'; import { Suggest } from '@blueprintjs/select'; diff --git a/src/components/Items/index.tsx b/src/components/Items/index.tsx index 55d07109d..9dd7732a7 100644 --- a/src/components/Items/index.tsx +++ b/src/components/Items/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export * from './ItemsMultiSelect'; export * from './ItemsListField'; export * from './ItemsSuggestField'; diff --git a/src/components/ItemsCategories/CategoriesSelectList.tsx b/src/components/ItemsCategories/CategoriesSelectList.tsx index 72cedf900..65c58aa2a 100644 --- a/src/components/ItemsCategories/CategoriesSelectList.tsx +++ b/src/components/ItemsCategories/CategoriesSelectList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import { FormattedMessage as T } from '@/components'; import { ListSelect } from '@/components'; diff --git a/src/components/ItemsCategories/index.tsx b/src/components/ItemsCategories/index.tsx index 0390b9155..04bea9117 100644 --- a/src/components/ItemsCategories/index.tsx +++ b/src/components/ItemsCategories/index.tsx @@ -1 +1,2 @@ +// @ts-nocheck export * from './CategoriesSelectList'; diff --git a/src/components/LazyLoader.tsx b/src/components/LazyLoader.tsx index b3eba265e..99008d973 100644 --- a/src/components/LazyLoader.tsx +++ b/src/components/LazyLoader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as React from 'react'; import * as Loadable from 'react-loadable'; diff --git a/src/components/MaterialProgressBar/index.tsx b/src/components/MaterialProgressBar/index.tsx index 5f89df8de..30930bdf2 100644 --- a/src/components/MaterialProgressBar/index.tsx +++ b/src/components/MaterialProgressBar/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import '@/style/components/MaterialProgressBar.scss'; diff --git a/src/components/Menu/MenuItem.tsx b/src/components/Menu/MenuItem.tsx index e03fc74ad..56752f109 100644 --- a/src/components/Menu/MenuItem.tsx +++ b/src/components/Menu/MenuItem.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck /* * Copyright 2015 Palantir Technologies, Inc. All rights reserved. * diff --git a/src/components/Menu/MenuItemLabel.tsx b/src/components/Menu/MenuItemLabel.tsx index 1b6531314..5cc880467 100644 --- a/src/components/Menu/MenuItemLabel.tsx +++ b/src/components/Menu/MenuItemLabel.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; export function MenuItemLabel({ text }) { diff --git a/src/components/Menu/MenuItemNestedText.tsx b/src/components/Menu/MenuItemNestedText.tsx index 387725329..89eec3e06 100644 --- a/src/components/Menu/MenuItemNestedText.tsx +++ b/src/components/Menu/MenuItemNestedText.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; /** diff --git a/src/components/Menu/index.ts b/src/components/Menu/index.ts index 5aac606f3..4eda77bdf 100644 --- a/src/components/Menu/index.ts +++ b/src/components/Menu/index.ts @@ -1,3 +1,4 @@ +// @ts-nocheck export * from './MenuItem'; export * from './MenuItemLabel'; export * from './MenuItemNestedText'; diff --git a/src/components/Money/Money.tsx b/src/components/Money/Money.tsx index e90b531b4..a1b47f59f 100644 --- a/src/components/Money/Money.tsx +++ b/src/components/Money/Money.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { formattedAmount } from '@/utils'; diff --git a/src/components/MultiSelectTaggable/index.tsx b/src/components/MultiSelectTaggable/index.tsx index c28126213..9b72f7080 100644 --- a/src/components/MultiSelectTaggable/index.tsx +++ b/src/components/MultiSelectTaggable/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback, useState } from 'react'; import { includes } from 'lodash'; import { MenuItem } from '@blueprintjs/core'; diff --git a/src/components/NProgress/AppProgress.tsx b/src/components/NProgress/AppProgress.tsx index e0f052187..4f0f65366 100644 --- a/src/components/NProgress/AppProgress.tsx +++ b/src/components/NProgress/AppProgress.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import Progress from './Progress'; import {useIsFetching} from 'react-query'; diff --git a/src/components/NProgress/Bar.tsx b/src/components/NProgress/Bar.tsx index a4a7cf4dd..d47a67d5e 100644 --- a/src/components/NProgress/Bar.tsx +++ b/src/components/NProgress/Bar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import PropTypes from 'prop-types' import * as React from 'react' diff --git a/src/components/NProgress/Container.tsx b/src/components/NProgress/Container.tsx index dc93eac1e..59454711b 100644 --- a/src/components/NProgress/Container.tsx +++ b/src/components/NProgress/Container.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import PropTypes from 'prop-types' import * as React from 'react' diff --git a/src/components/NProgress/Progress.tsx b/src/components/NProgress/Progress.tsx index 8e47d8a8d..8278b4840 100644 --- a/src/components/NProgress/Progress.tsx +++ b/src/components/NProgress/Progress.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react' import { useNProgress } from '@tanem/react-nprogress' import PropTypes from 'prop-types' diff --git a/src/components/NProgress/Spinner.tsx b/src/components/NProgress/Spinner.tsx index 4420ee3c1..960d7a2d0 100644 --- a/src/components/NProgress/Spinner.tsx +++ b/src/components/NProgress/Spinner.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as React from 'react' const Spinner = () => ( diff --git a/src/components/NumberFormatDropdown/NumberFormatFields.tsx b/src/components/NumberFormatDropdown/NumberFormatFields.tsx index 41a0178ae..ce2fb57bc 100644 --- a/src/components/NumberFormatDropdown/NumberFormatFields.tsx +++ b/src/components/NumberFormatDropdown/NumberFormatFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FastField, ErrorMessage } from 'formik'; import { FormGroup, Checkbox, Switch } from '@blueprintjs/core'; diff --git a/src/components/NumberFormatDropdown/NumberFormatFooter.tsx b/src/components/NumberFormatDropdown/NumberFormatFooter.tsx index c821a2789..8a744b89c 100644 --- a/src/components/NumberFormatDropdown/NumberFormatFooter.tsx +++ b/src/components/NumberFormatDropdown/NumberFormatFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; import { Button, Classes, Intent } from '@blueprintjs/core'; diff --git a/src/components/NumberFormatDropdown/NumberFormats.schema.tsx b/src/components/NumberFormatDropdown/NumberFormats.schema.tsx index 0be64d774..530d18cab 100644 --- a/src/components/NumberFormatDropdown/NumberFormats.schema.tsx +++ b/src/components/NumberFormatDropdown/NumberFormats.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import { DATATYPES_LENGTH } from '@/constants/dataTypes'; import { defaultTo } from 'lodash'; diff --git a/src/components/NumberFormatDropdown/index.tsx b/src/components/NumberFormatDropdown/index.tsx index 5221c6316..af94fd44a 100644 --- a/src/components/NumberFormatDropdown/index.tsx +++ b/src/components/NumberFormatDropdown/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import { Formik, Form } from 'formik'; diff --git a/src/components/PageForm/FormTopbar.tsx b/src/components/PageForm/FormTopbar.tsx index 3cf314ab4..e4108069d 100644 --- a/src/components/PageForm/FormTopbar.tsx +++ b/src/components/PageForm/FormTopbar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { Navbar } from '@blueprintjs/core'; diff --git a/src/components/PageForm/PageFormBigNumber.tsx b/src/components/PageForm/PageFormBigNumber.tsx index 678c3afb1..5508b8fdb 100644 --- a/src/components/PageForm/PageFormBigNumber.tsx +++ b/src/components/PageForm/PageFormBigNumber.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import { CLASSES } from '@/constants/classes'; diff --git a/src/components/PageForm/index.ts b/src/components/PageForm/index.ts index 4df2c5071..f4fac33f0 100644 --- a/src/components/PageForm/index.ts +++ b/src/components/PageForm/index.ts @@ -1,2 +1,3 @@ +// @ts-nocheck export * from './FormTopbar'; export * from './PageFormBigNumber'; diff --git a/src/components/Paper/Paper.tsx b/src/components/Paper/Paper.tsx index c84c17aab..e8fe82bc5 100644 --- a/src/components/Paper/Paper.tsx +++ b/src/components/Paper/Paper.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/components/Paper/index.tsx b/src/components/Paper/index.tsx index 50257d591..364dde64a 100644 --- a/src/components/Paper/index.tsx +++ b/src/components/Paper/index.tsx @@ -1 +1,2 @@ +// @ts-nocheck export * from './Paper'; \ No newline at end of file diff --git a/src/components/PaymentReceive/PaymentReceiveListField.tsx b/src/components/PaymentReceive/PaymentReceiveListField.tsx index bbea03389..7a4bcc5b4 100644 --- a/src/components/PaymentReceive/PaymentReceiveListField.tsx +++ b/src/components/PaymentReceive/PaymentReceiveListField.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import { MenuItem } from '@blueprintjs/core'; import { ListSelect, FormattedMessage as T } from '@/components'; diff --git a/src/components/PaymentReceive/index.ts b/src/components/PaymentReceive/index.ts index 5abb0fb6e..ffa15a95a 100644 --- a/src/components/PaymentReceive/index.ts +++ b/src/components/PaymentReceive/index.ts @@ -1 +1,2 @@ +// @ts-nocheck export * from './PaymentReceiveListField'; diff --git a/src/components/PdfPreview/index.tsx b/src/components/PdfPreview/index.tsx index f60d71e55..57ac276ed 100644 --- a/src/components/PdfPreview/index.tsx +++ b/src/components/PdfPreview/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Spinner, Classes } from '@blueprintjs/core'; import classNames from 'classnames'; diff --git a/src/components/Postbox/index.tsx b/src/components/Postbox/index.tsx index 8559a5f57..8a3b26596 100644 --- a/src/components/Postbox/index.tsx +++ b/src/components/Postbox/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useState } from 'react'; import { Collapse } from '@blueprintjs/core'; import classNames from 'classnames'; diff --git a/src/components/Preferences/PreferencesContentRoute.tsx b/src/components/Preferences/PreferencesContentRoute.tsx index 532da5ce0..9de4144f6 100644 --- a/src/components/Preferences/PreferencesContentRoute.tsx +++ b/src/components/Preferences/PreferencesContentRoute.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Route, Switch } from 'react-router-dom'; import preferencesRoutes from '@/routes/preferences'; diff --git a/src/components/Preferences/PreferencesPage.tsx b/src/components/Preferences/PreferencesPage.tsx index ded48fe50..083820df2 100644 --- a/src/components/Preferences/PreferencesPage.tsx +++ b/src/components/Preferences/PreferencesPage.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { ErrorBoundary } from 'react-error-boundary'; import classNames from 'classnames'; diff --git a/src/components/Preferences/PreferencesSidebar.tsx b/src/components/Preferences/PreferencesSidebar.tsx index ffca0477c..4eeb08999 100644 --- a/src/components/Preferences/PreferencesSidebar.tsx +++ b/src/components/Preferences/PreferencesSidebar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Menu, MenuItem, MenuDivider } from '@blueprintjs/core'; import { useHistory, useLocation } from 'react-router-dom'; diff --git a/src/components/Preferences/PreferencesSidebarContainer.tsx b/src/components/Preferences/PreferencesSidebarContainer.tsx index 3cab03f3d..defc70f96 100644 --- a/src/components/Preferences/PreferencesSidebarContainer.tsx +++ b/src/components/Preferences/PreferencesSidebarContainer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import { Scrollbar } from 'react-scrollbars-custom'; diff --git a/src/components/Preferences/PreferencesSubContent.tsx b/src/components/Preferences/PreferencesSubContent.tsx index 4ddd2f6c1..a75d78fca 100644 --- a/src/components/Preferences/PreferencesSubContent.tsx +++ b/src/components/Preferences/PreferencesSubContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import preferencesTabs from '@/routes/preferencesTabs'; import {Switch, Route, useRouteMatch} from 'react-router-dom'; diff --git a/src/components/Preferences/PreferencesTopbar.tsx b/src/components/Preferences/PreferencesTopbar.tsx index c05269573..d46f4d1b0 100644 --- a/src/components/Preferences/PreferencesTopbar.tsx +++ b/src/components/Preferences/PreferencesTopbar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Route, Switch } from 'react-router-dom'; import classNames from 'classnames'; diff --git a/src/components/SMSPreview/index.tsx b/src/components/SMSPreview/index.tsx index bfe5a6521..a9e423ac4 100644 --- a/src/components/SMSPreview/index.tsx +++ b/src/components/SMSPreview/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/components/Select/DisplayNameList.tsx b/src/components/Select/DisplayNameList.tsx index e95699852..922f02884 100644 --- a/src/components/Select/DisplayNameList.tsx +++ b/src/components/Select/DisplayNameList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { ListSelect } from './ListSelect'; diff --git a/src/components/Select/ListSelect.tsx b/src/components/Select/ListSelect.tsx index 0b65136c2..64b8e9d0a 100644 --- a/src/components/Select/ListSelect.tsx +++ b/src/components/Select/ListSelect.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useState, useMemo, useEffect } from 'react'; import { Button, MenuItem } from '@blueprintjs/core'; import { Select } from '@blueprintjs/select'; diff --git a/src/components/Select/SalutationList.tsx b/src/components/Select/SalutationList.tsx index e4941b954..0ea7a670c 100644 --- a/src/components/Select/SalutationList.tsx +++ b/src/components/Select/SalutationList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; diff --git a/src/components/Select/index.ts b/src/components/Select/index.ts index f9b3db4b3..d7745a7eb 100644 --- a/src/components/Select/index.ts +++ b/src/components/Select/index.ts @@ -1,3 +1,4 @@ +// @ts-nocheck export * from './ListSelect'; export * from './SalutationList'; export * from './DisplayNameList' diff --git a/src/components/Skeleton/Skeleton.tsx b/src/components/Skeleton/Skeleton.tsx index c05dde1cb..1e3d55625 100644 --- a/src/components/Skeleton/Skeleton.tsx +++ b/src/components/Skeleton/Skeleton.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import '@/style/components/Skeleton.scss'; diff --git a/src/components/Skeleton/SkeletonText.tsx b/src/components/Skeleton/SkeletonText.tsx index 59ef5aa87..cc5c5926e 100644 --- a/src/components/Skeleton/SkeletonText.tsx +++ b/src/components/Skeleton/SkeletonText.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import '@/style/components/Skeleton.scss'; diff --git a/src/components/Skeleton/index.ts b/src/components/Skeleton/index.ts index 652b32377..24e95aa08 100644 --- a/src/components/Skeleton/index.ts +++ b/src/components/Skeleton/index.ts @@ -1,2 +1,3 @@ +// @ts-nocheck export * from './Skeleton'; export * from './SkeletonText'; diff --git a/src/components/Subscriptions/index.tsx b/src/components/Subscriptions/index.tsx index 7b0087307..56f32b3e2 100644 --- a/src/components/Subscriptions/index.tsx +++ b/src/components/Subscriptions/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; diff --git a/src/components/Table/index.tsx b/src/components/Table/index.tsx index 9c5afe084..f81f1fcb8 100644 --- a/src/components/Table/index.tsx +++ b/src/components/Table/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import styled from 'styled-components'; export const Table = styled.table` diff --git a/src/components/Tags/CurrencyTag.tsx b/src/components/Tags/CurrencyTag.tsx index 7e9a0ee7a..9ed07b229 100644 --- a/src/components/Tags/CurrencyTag.tsx +++ b/src/components/Tags/CurrencyTag.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import styled from 'styled-components'; export const CurrencyTag = styled.span` diff --git a/src/components/Tags/FlagIcon.tsx b/src/components/Tags/FlagIcon.tsx index b90d8e1ed..93a9d2e37 100644 --- a/src/components/Tags/FlagIcon.tsx +++ b/src/components/Tags/FlagIcon.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; export const FlagIcon = ({ currencyCode, className }) => { diff --git a/src/components/Tags/index.tsx b/src/components/Tags/index.tsx index 1f765a8ac..56e8fd3cf 100644 --- a/src/components/Tags/index.tsx +++ b/src/components/Tags/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export * from './CurrencyTag'; diff --git a/src/components/TextStatus/index.tsx b/src/components/TextStatus/index.tsx index 186956a41..1c3d5fe03 100644 --- a/src/components/TextStatus/index.tsx +++ b/src/components/TextStatus/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/components/TotalLines/index.tsx b/src/components/TotalLines/index.tsx index 43110aa26..ae97abd45 100644 --- a/src/components/TotalLines/index.tsx +++ b/src/components/TotalLines/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/components/Typo/Paragraph.tsx b/src/components/Typo/Paragraph.tsx index 526425de3..6522307d5 100644 --- a/src/components/Typo/Paragraph.tsx +++ b/src/components/Typo/Paragraph.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import clsx from 'classnames'; diff --git a/src/components/Typo/index.tsx b/src/components/Typo/index.tsx index 6d06a82b4..946f55f84 100644 --- a/src/components/Typo/index.tsx +++ b/src/components/Typo/index.tsx @@ -1,2 +1,3 @@ +// @ts-nocheck export * from './Paragraph'; \ No newline at end of file diff --git a/src/components/UniversalSearch/UniversalSearch.tsx b/src/components/UniversalSearch/UniversalSearch.tsx index 45df1596c..b91eefc94 100644 --- a/src/components/UniversalSearch/UniversalSearch.tsx +++ b/src/components/UniversalSearch/UniversalSearch.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import classNames from 'classnames'; diff --git a/src/components/UniversalSearch/UniversalSearchProvider.tsx b/src/components/UniversalSearch/UniversalSearchProvider.tsx index 39a90ddd7..f7f206593 100644 --- a/src/components/UniversalSearch/UniversalSearchProvider.tsx +++ b/src/components/UniversalSearch/UniversalSearchProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext } from 'react'; const UniversalSearchContext = createContext(); diff --git a/src/components/UniversalSearch/utils.tsx b/src/components/UniversalSearch/utils.tsx index d18d31a99..214251280 100644 --- a/src/components/UniversalSearch/utils.tsx +++ b/src/components/UniversalSearch/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export const filterItemsByResourceType = (items, type) => { return items.filter((item) => item._type === type); diff --git a/src/components/Utils/Choose.tsx b/src/components/Utils/Choose.tsx index 73ac69feb..bbf762109 100644 --- a/src/components/Utils/Choose.tsx +++ b/src/components/Utils/Choose.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import PropTypes from 'prop-types'; import { If } from './If'; diff --git a/src/components/Utils/For.tsx b/src/components/Utils/For.tsx index 9e5e1ef5d..64cbffa18 100644 --- a/src/components/Utils/For.tsx +++ b/src/components/Utils/For.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import PropTypes from 'prop-types'; diff --git a/src/components/Utils/FormatDate.tsx b/src/components/Utils/FormatDate.tsx index 4ac2c8047..417d585c5 100644 --- a/src/components/Utils/FormatDate.tsx +++ b/src/components/Utils/FormatDate.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import intl from 'react-intl-universal'; diff --git a/src/components/Utils/FormatNumber.tsx b/src/components/Utils/FormatNumber.tsx index 21a3ba72e..7a970f3a3 100644 --- a/src/components/Utils/FormatNumber.tsx +++ b/src/components/Utils/FormatNumber.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { formattedAmount } from '@/utils'; diff --git a/src/components/Utils/If.tsx b/src/components/Utils/If.tsx index e0a3b8569..baf80bdc8 100644 --- a/src/components/Utils/If.tsx +++ b/src/components/Utils/If.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import PropTypes from 'prop-types'; diff --git a/src/components/Utils/Join.tsx b/src/components/Utils/Join.tsx index a2314599e..99c11cb68 100644 --- a/src/components/Utils/Join.tsx +++ b/src/components/Utils/Join.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; export function Join({ items, sep }) { diff --git a/src/components/Utils/index.tsx b/src/components/Utils/index.tsx index 2fd6c5ff1..b7e41598a 100644 --- a/src/components/Utils/index.tsx +++ b/src/components/Utils/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export * from './FormatNumber'; export * from './FormatDate'; export * from './Join'; diff --git a/src/components/Vendors/VendorDrawerLink.tsx b/src/components/Vendors/VendorDrawerLink.tsx index fa3a1941c..909928f06 100644 --- a/src/components/Vendors/VendorDrawerLink.tsx +++ b/src/components/Vendors/VendorDrawerLink.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as R from 'ramda'; diff --git a/src/components/Vendors/VendorSelectField.tsx b/src/components/Vendors/VendorSelectField.tsx index 4805b5cc1..6883baccb 100644 --- a/src/components/Vendors/VendorSelectField.tsx +++ b/src/components/Vendors/VendorSelectField.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback, useState, useEffect, useMemo } from 'react'; import { FormattedMessage as T } from '@/components'; import intl from 'react-intl-universal'; diff --git a/src/components/Vendors/index.tsx b/src/components/Vendors/index.tsx index c7a520905..a57d1571c 100644 --- a/src/components/Vendors/index.tsx +++ b/src/components/Vendors/index.tsx @@ -1,2 +1,3 @@ +// @ts-nocheck export * from './VendorDrawerLink' export * from './VendorSelectField' \ No newline at end of file diff --git a/src/components/Vendors/utils.tsx b/src/components/Vendors/utils.tsx index 58b453981..e80481b62 100644 --- a/src/components/Vendors/utils.tsx +++ b/src/components/Vendors/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { MenuItem } from '@blueprintjs/core'; diff --git a/src/components/Warehouses/WarehouseMultiSelect.tsx b/src/components/Warehouses/WarehouseMultiSelect.tsx index 0a24eeef7..af71b4c70 100644 --- a/src/components/Warehouses/WarehouseMultiSelect.tsx +++ b/src/components/Warehouses/WarehouseMultiSelect.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { MenuItem } from '@blueprintjs/core'; diff --git a/src/components/Warehouses/WarehouseSelect.tsx b/src/components/Warehouses/WarehouseSelect.tsx index cb9470d95..106550ca5 100644 --- a/src/components/Warehouses/WarehouseSelect.tsx +++ b/src/components/Warehouses/WarehouseSelect.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { MenuItem, Button } from '@blueprintjs/core'; diff --git a/src/components/Warehouses/index.tsx b/src/components/Warehouses/index.tsx index 6975b2230..39d45b6fa 100644 --- a/src/components/Warehouses/index.tsx +++ b/src/components/Warehouses/index.tsx @@ -1,2 +1,3 @@ +// @ts-nocheck export * from './WarehouseSelect'; export * from './WarehouseMultiSelect'; diff --git a/src/components/index.tsx b/src/components/index.tsx index 4b03b1f0b..b8940553b 100644 --- a/src/components/index.tsx +++ b/src/components/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import MODIFIER from './modifiers'; import ContextMenu from './ContextMenu'; import AvaterCell from './AvaterCell'; diff --git a/src/components/modifiers.tsx b/src/components/modifiers.tsx index 891c281d0..b8b18947a 100644 --- a/src/components/modifiers.tsx +++ b/src/components/modifiers.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { SELECT_LIST_FILL_POPOVER: 'select-list--fill-popover', SELECT_LIST_FILL_BUTTON: 'select-list--fill-button', diff --git a/src/constants/abilityOption.tsx b/src/constants/abilityOption.tsx index 586e5bd36..fa460ff6b 100644 --- a/src/constants/abilityOption.tsx +++ b/src/constants/abilityOption.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export const AbilitySubject = { Item: 'Item', InventoryAdjustment: 'InventoryAdjustment', diff --git a/src/constants/accountTypes.tsx b/src/constants/accountTypes.tsx index 144e75c30..e3fa6b287 100644 --- a/src/constants/accountTypes.tsx +++ b/src/constants/accountTypes.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export const ACCOUNT_TYPE = { CASH: 'cash', BANK: 'bank', diff --git a/src/constants/adjustmentType.tsx b/src/constants/adjustmentType.tsx index 8db0f29e1..1d4bf7b65 100644 --- a/src/constants/adjustmentType.tsx +++ b/src/constants/adjustmentType.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; export default [ diff --git a/src/constants/allocateLandedCostType.tsx b/src/constants/allocateLandedCostType.tsx index 74bcffacf..a5c9edfe2 100644 --- a/src/constants/allocateLandedCostType.tsx +++ b/src/constants/allocateLandedCostType.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; export default [ diff --git a/src/constants/app.tsx b/src/constants/app.tsx index 93784a738..648e09f3e 100644 --- a/src/constants/app.tsx +++ b/src/constants/app.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { "app_name": "BigCapital", "app_version": "0.0.1 (build 12344)", diff --git a/src/constants/cashflowOptions.tsx b/src/constants/cashflowOptions.tsx index 182020b26..54848865d 100644 --- a/src/constants/cashflowOptions.tsx +++ b/src/constants/cashflowOptions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; export const addMoneyIn = [ diff --git a/src/constants/cellTypes.tsx b/src/constants/cellTypes.tsx index 4c2299a59..02c971c17 100644 --- a/src/constants/cellTypes.tsx +++ b/src/constants/cellTypes.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export const CellType = { diff --git a/src/constants/classes.tsx b/src/constants/classes.tsx index 0672377fb..778829263 100644 --- a/src/constants/classes.tsx +++ b/src/constants/classes.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { Classes } from '@blueprintjs/core'; const CLASSES = { diff --git a/src/constants/contactsOptions.tsx b/src/constants/contactsOptions.tsx index f03a49e22..2a998377c 100644 --- a/src/constants/contactsOptions.tsx +++ b/src/constants/contactsOptions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; diff --git a/src/constants/countries.tsx b/src/constants/countries.tsx index c1bfe5c5a..560dd6723 100644 --- a/src/constants/countries.tsx +++ b/src/constants/countries.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; export const getCountries = () => [ diff --git a/src/constants/currencies.tsx b/src/constants/currencies.tsx index 4a1f0c9ad..bc347098d 100644 --- a/src/constants/currencies.tsx +++ b/src/constants/currencies.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; import currencies from 'js-money/lib/currency'; import { sortBy } from 'lodash'; diff --git a/src/constants/dataTypes.tsx b/src/constants/dataTypes.tsx index 8a87f87e7..8b3eb6c80 100644 --- a/src/constants/dataTypes.tsx +++ b/src/constants/dataTypes.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export const DATATYPES_LENGTH = { STRING: 255, TEXT: 65535, diff --git a/src/constants/dateFormatsOptions.tsx b/src/constants/dateFormatsOptions.tsx index 3a194a790..91c8fd770 100644 --- a/src/constants/dateFormatsOptions.tsx +++ b/src/constants/dateFormatsOptions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import moment from 'moment'; import intl from 'react-intl-universal'; diff --git a/src/constants/dialogs.ts b/src/constants/dialogs.ts index f3e97b41d..dac735449 100644 --- a/src/constants/dialogs.ts +++ b/src/constants/dialogs.ts @@ -1,3 +1,4 @@ +// @ts-nocheck export enum DialogsName { AccountForm = 'account-form', CurrencyForm = 'currency-form', diff --git a/src/constants/drawers.ts b/src/constants/drawers.ts index f008e1a4d..3d25e93ef 100644 --- a/src/constants/drawers.ts +++ b/src/constants/drawers.ts @@ -1,3 +1,4 @@ +// @ts-nocheck export enum DRAWERS { ACCOUNT = 'account-drawer', JOURNAL = 'journal-drawer', diff --git a/src/constants/errors.tsx b/src/constants/errors.tsx index c4be73566..2411c4d74 100644 --- a/src/constants/errors.tsx +++ b/src/constants/errors.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export const ERROR = { // Sales Estimates ESTIMATE_NUMBER_IS_NOT_UNQIUE: 'ESTIMATE.NUMBER.IS.NOT.UNQIUE', diff --git a/src/constants/features.tsx b/src/constants/features.tsx index 5392025c2..ef391f3ef 100644 --- a/src/constants/features.tsx +++ b/src/constants/features.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export const Features = { diff --git a/src/constants/financialReportsMenu.tsx b/src/constants/financialReportsMenu.tsx index 7d68f2a2f..e7b300bd2 100644 --- a/src/constants/financialReportsMenu.tsx +++ b/src/constants/financialReportsMenu.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FormattedMessage as T } from '@/components'; import { ReportsAction, AbilitySubject } from '@/constants/abilityOption'; diff --git a/src/constants/fiscalYearOptions.tsx b/src/constants/fiscalYearOptions.tsx index 14d887946..3621f7812 100644 --- a/src/constants/fiscalYearOptions.tsx +++ b/src/constants/fiscalYearOptions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; export const getFiscalYear = () => [ diff --git a/src/constants/footerLinks.tsx b/src/constants/footerLinks.tsx index 8702f266e..e7d84bd62 100644 --- a/src/constants/footerLinks.tsx +++ b/src/constants/footerLinks.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; export const getFooterLinks = () => [ diff --git a/src/constants/homepageOptions.tsx b/src/constants/homepageOptions.tsx index da78ebe76..7c050787d 100644 --- a/src/constants/homepageOptions.tsx +++ b/src/constants/homepageOptions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FormattedMessage as T } from '@/components'; import { diff --git a/src/constants/index.tsx b/src/constants/index.tsx index 63063ba10..344a70c87 100644 --- a/src/constants/index.tsx +++ b/src/constants/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export * from './accountTypes'; export * from './tableStyle'; export * from './features'; diff --git a/src/constants/itemPaymentTranactionsOption.tsx b/src/constants/itemPaymentTranactionsOption.tsx index 58d892539..2c84960cb 100644 --- a/src/constants/itemPaymentTranactionsOption.tsx +++ b/src/constants/itemPaymentTranactionsOption.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; import { AbilitySubject, diff --git a/src/constants/keyboardShortcutsOptions.tsx b/src/constants/keyboardShortcutsOptions.tsx index cd026dedf..6f13a60ed 100644 --- a/src/constants/keyboardShortcutsOptions.tsx +++ b/src/constants/keyboardShortcutsOptions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; import { AbilitySubject, diff --git a/src/constants/languagesOptions.tsx b/src/constants/languagesOptions.tsx index 76f630e76..1286d8fe1 100644 --- a/src/constants/languagesOptions.tsx +++ b/src/constants/languagesOptions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; export const getLanguages = () => [ diff --git a/src/constants/modalChargeOptions.tsx b/src/constants/modalChargeOptions.tsx index 623feefec..6d6945498 100644 --- a/src/constants/modalChargeOptions.tsx +++ b/src/constants/modalChargeOptions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; export const modalChargeOptions = [ diff --git a/src/constants/moreVertOptions.tsx b/src/constants/moreVertOptions.tsx index d3a2564c8..f0207d4e5 100644 --- a/src/constants/moreVertOptions.tsx +++ b/src/constants/moreVertOptions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; export const moreVertOptions = [ diff --git a/src/constants/numberFormatsOptions.tsx b/src/constants/numberFormatsOptions.tsx index 4e2b6ccf8..f19eee815 100644 --- a/src/constants/numberFormatsOptions.tsx +++ b/src/constants/numberFormatsOptions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; export const moneyFormat = [ diff --git a/src/constants/permissionsSchema.tsx b/src/constants/permissionsSchema.tsx index 38347abf8..54df8bb99 100644 --- a/src/constants/permissionsSchema.tsx +++ b/src/constants/permissionsSchema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { chain } from 'lodash'; import intl from 'react-intl-universal'; import { diff --git a/src/constants/preferencesMenu.tsx b/src/constants/preferencesMenu.tsx index a21c0d497..f90c7ed04 100644 --- a/src/constants/preferencesMenu.tsx +++ b/src/constants/preferencesMenu.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FormattedMessage as T } from '@/components'; diff --git a/src/constants/quickNewOptions.tsx b/src/constants/quickNewOptions.tsx index bde8ed14f..8f9c3502d 100644 --- a/src/constants/quickNewOptions.tsx +++ b/src/constants/quickNewOptions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; import { AbilitySubject, diff --git a/src/constants/registerWizard.tsx b/src/constants/registerWizard.tsx index 595f9a00a..f1d971d2e 100644 --- a/src/constants/registerWizard.tsx +++ b/src/constants/registerWizard.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; export const getSetupWizardSteps = () => [ diff --git a/src/constants/resourcesTypes.tsx b/src/constants/resourcesTypes.tsx index 91e981aa8..873bc139d 100644 --- a/src/constants/resourcesTypes.tsx +++ b/src/constants/resourcesTypes.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export const RESOURCES_TYPES = { INVOICE: 'invoice', ESTIMATE: 'estimate', diff --git a/src/constants/sidebarMenu.tsx b/src/constants/sidebarMenu.tsx index 686e4d3f9..e356e0175 100644 --- a/src/constants/sidebarMenu.tsx +++ b/src/constants/sidebarMenu.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FormattedMessage as T } from '@/components'; import { Features } from '@/constants/features'; diff --git a/src/constants/subscriptionModels.tsx b/src/constants/subscriptionModels.tsx index 205b2c339..11228be99 100644 --- a/src/constants/subscriptionModels.tsx +++ b/src/constants/subscriptionModels.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck // Subscription plans. export const plans = [ diff --git a/src/constants/tableStyle.tsx b/src/constants/tableStyle.tsx index d570a00fb..8cb4da433 100644 --- a/src/constants/tableStyle.tsx +++ b/src/constants/tableStyle.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export const TableStyle = { diff --git a/src/constants/tables.tsx b/src/constants/tables.tsx index e55aae3d8..2770d9cf8 100644 --- a/src/constants/tables.tsx +++ b/src/constants/tables.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export const TABLES = { ITEMS: 'items', INVENTORY_ADJUSTMENTS: 'inventory_adjustment', diff --git a/src/containers/Accounting/JournalsLanding/ManualJournalActionsBar.tsx b/src/containers/Accounting/JournalsLanding/ManualJournalActionsBar.tsx index 819564014..e1a9bbac5 100644 --- a/src/containers/Accounting/JournalsLanding/ManualJournalActionsBar.tsx +++ b/src/containers/Accounting/JournalsLanding/ManualJournalActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, diff --git a/src/containers/Accounting/JournalsLanding/ManualJournalsAlerts.tsx b/src/containers/Accounting/JournalsLanding/ManualJournalsAlerts.tsx index 3c2b92e93..d45132c5a 100644 --- a/src/containers/Accounting/JournalsLanding/ManualJournalsAlerts.tsx +++ b/src/containers/Accounting/JournalsLanding/ManualJournalsAlerts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; const JournalDeleteAlert = React.lazy( diff --git a/src/containers/Accounting/JournalsLanding/ManualJournalsDataTable.tsx b/src/containers/Accounting/JournalsLanding/ManualJournalsDataTable.tsx index 2854c41dc..7f4f14f2f 100644 --- a/src/containers/Accounting/JournalsLanding/ManualJournalsDataTable.tsx +++ b/src/containers/Accounting/JournalsLanding/ManualJournalsDataTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Accounting/JournalsLanding/ManualJournalsEmptyStatus.tsx b/src/containers/Accounting/JournalsLanding/ManualJournalsEmptyStatus.tsx index df7c8bfa9..6e89b5385 100644 --- a/src/containers/Accounting/JournalsLanding/ManualJournalsEmptyStatus.tsx +++ b/src/containers/Accounting/JournalsLanding/ManualJournalsEmptyStatus.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, Intent } from '@blueprintjs/core'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Accounting/JournalsLanding/ManualJournalsList.tsx b/src/containers/Accounting/JournalsLanding/ManualJournalsList.tsx index 975035f8d..749ac981f 100644 --- a/src/containers/Accounting/JournalsLanding/ManualJournalsList.tsx +++ b/src/containers/Accounting/JournalsLanding/ManualJournalsList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import '@/style/pages/ManualJournal/List.scss'; diff --git a/src/containers/Accounting/JournalsLanding/ManualJournalsListProvider.tsx b/src/containers/Accounting/JournalsLanding/ManualJournalsListProvider.tsx index 1296725b2..54ef83f21 100644 --- a/src/containers/Accounting/JournalsLanding/ManualJournalsListProvider.tsx +++ b/src/containers/Accounting/JournalsLanding/ManualJournalsListProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext } from 'react'; import { isEmpty } from 'lodash'; diff --git a/src/containers/Accounting/JournalsLanding/ManualJournalsViewTabs.tsx b/src/containers/Accounting/JournalsLanding/ManualJournalsViewTabs.tsx index 20d960be6..9752013e4 100644 --- a/src/containers/Accounting/JournalsLanding/ManualJournalsViewTabs.tsx +++ b/src/containers/Accounting/JournalsLanding/ManualJournalsViewTabs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Alignment, Navbar, NavbarGroup } from '@blueprintjs/core'; import { pick } from 'lodash'; diff --git a/src/containers/Accounting/JournalsLanding/components.tsx b/src/containers/Accounting/JournalsLanding/components.tsx index 022ebdb0b..34bdd5cc8 100644 --- a/src/containers/Accounting/JournalsLanding/components.tsx +++ b/src/containers/Accounting/JournalsLanding/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, diff --git a/src/containers/Accounting/JournalsLanding/utils.tsx b/src/containers/Accounting/JournalsLanding/utils.tsx index 2935d7256..3bb0aa798 100644 --- a/src/containers/Accounting/JournalsLanding/utils.tsx +++ b/src/containers/Accounting/JournalsLanding/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import clsx from 'classnames'; diff --git a/src/containers/Accounting/JournalsLanding/withManualJournals.tsx b/src/containers/Accounting/JournalsLanding/withManualJournals.tsx index b06938b70..474d06354 100644 --- a/src/containers/Accounting/JournalsLanding/withManualJournals.tsx +++ b/src/containers/Accounting/JournalsLanding/withManualJournals.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getManualJournalsTableStateFactory, diff --git a/src/containers/Accounting/JournalsLanding/withManualJournalsActions.tsx b/src/containers/Accounting/JournalsLanding/withManualJournalsActions.tsx index b3af175a5..23605545e 100644 --- a/src/containers/Accounting/JournalsLanding/withManualJournalsActions.tsx +++ b/src/containers/Accounting/JournalsLanding/withManualJournalsActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { setManualJournalsTableState, diff --git a/src/containers/Accounting/MakeJournal/MakeJournalEntries.schema.tsx b/src/containers/Accounting/MakeJournal/MakeJournalEntries.schema.tsx index 9dd5de66d..8c2b8a079 100644 --- a/src/containers/Accounting/MakeJournal/MakeJournalEntries.schema.tsx +++ b/src/containers/Accounting/MakeJournal/MakeJournalEntries.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; import { DATATYPES_LENGTH } from '@/constants/dataTypes'; diff --git a/src/containers/Accounting/MakeJournal/MakeJournalEntriesField.tsx b/src/containers/Accounting/MakeJournal/MakeJournalEntriesField.tsx index d67241c16..ad1e3ad82 100644 --- a/src/containers/Accounting/MakeJournal/MakeJournalEntriesField.tsx +++ b/src/containers/Accounting/MakeJournal/MakeJournalEntriesField.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FastField } from 'formik'; import classNames from 'classnames'; diff --git a/src/containers/Accounting/MakeJournal/MakeJournalEntriesFooter.tsx b/src/containers/Accounting/MakeJournal/MakeJournalEntriesFooter.tsx index f2df70837..43e74a42d 100644 --- a/src/containers/Accounting/MakeJournal/MakeJournalEntriesFooter.tsx +++ b/src/containers/Accounting/MakeJournal/MakeJournalEntriesFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, diff --git a/src/containers/Accounting/MakeJournal/MakeJournalEntriesForm.tsx b/src/containers/Accounting/MakeJournal/MakeJournalEntriesForm.tsx index 7c0961186..1eb9ae19f 100644 --- a/src/containers/Accounting/MakeJournal/MakeJournalEntriesForm.tsx +++ b/src/containers/Accounting/MakeJournal/MakeJournalEntriesForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import { Formik, Form } from 'formik'; import { Intent } from '@blueprintjs/core'; diff --git a/src/containers/Accounting/MakeJournal/MakeJournalEntriesHeader.tsx b/src/containers/Accounting/MakeJournal/MakeJournalEntriesHeader.tsx index df9a1af2f..691ac9d87 100644 --- a/src/containers/Accounting/MakeJournal/MakeJournalEntriesHeader.tsx +++ b/src/containers/Accounting/MakeJournal/MakeJournalEntriesHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Accounting/MakeJournal/MakeJournalEntriesHeaderFields.tsx b/src/containers/Accounting/MakeJournal/MakeJournalEntriesHeaderFields.tsx index 651501d5c..23998a5ba 100644 --- a/src/containers/Accounting/MakeJournal/MakeJournalEntriesHeaderFields.tsx +++ b/src/containers/Accounting/MakeJournal/MakeJournalEntriesHeaderFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { InputGroup, diff --git a/src/containers/Accounting/MakeJournal/MakeJournalEntriesPage.tsx b/src/containers/Accounting/MakeJournal/MakeJournalEntriesPage.tsx index cc50fbac0..57ad6f795 100644 --- a/src/containers/Accounting/MakeJournal/MakeJournalEntriesPage.tsx +++ b/src/containers/Accounting/MakeJournal/MakeJournalEntriesPage.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useParams } from 'react-router-dom'; diff --git a/src/containers/Accounting/MakeJournal/MakeJournalEntriesTable.tsx b/src/containers/Accounting/MakeJournal/MakeJournalEntriesTable.tsx index 60fff127d..416892490 100644 --- a/src/containers/Accounting/MakeJournal/MakeJournalEntriesTable.tsx +++ b/src/containers/Accounting/MakeJournal/MakeJournalEntriesTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DataTableEditable } from '@/components'; import { diff --git a/src/containers/Accounting/MakeJournal/MakeJournalFormDialogs.tsx b/src/containers/Accounting/MakeJournal/MakeJournalFormDialogs.tsx index 1478a3114..be945be87 100644 --- a/src/containers/Accounting/MakeJournal/MakeJournalFormDialogs.tsx +++ b/src/containers/Accounting/MakeJournal/MakeJournalFormDialogs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; import JournalNumberDialog from '@/containers/Dialogs/JournalNumberDialog'; diff --git a/src/containers/Accounting/MakeJournal/MakeJournalFormFloatingActions.tsx b/src/containers/Accounting/MakeJournal/MakeJournalFormFloatingActions.tsx index 5feac5d92..1b5d801c6 100644 --- a/src/containers/Accounting/MakeJournal/MakeJournalFormFloatingActions.tsx +++ b/src/containers/Accounting/MakeJournal/MakeJournalFormFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, diff --git a/src/containers/Accounting/MakeJournal/MakeJournalFormFooter.tsx b/src/containers/Accounting/MakeJournal/MakeJournalFormFooter.tsx index 1180e3de2..0fcf729a8 100644 --- a/src/containers/Accounting/MakeJournal/MakeJournalFormFooter.tsx +++ b/src/containers/Accounting/MakeJournal/MakeJournalFormFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import styled from 'styled-components'; diff --git a/src/containers/Accounting/MakeJournal/MakeJournalFormFooterLeft.tsx b/src/containers/Accounting/MakeJournal/MakeJournalFormFooterLeft.tsx index 601c0f310..f0d238dce 100644 --- a/src/containers/Accounting/MakeJournal/MakeJournalFormFooterLeft.tsx +++ b/src/containers/Accounting/MakeJournal/MakeJournalFormFooterLeft.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { FFormGroup, FEditableText, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Accounting/MakeJournal/MakeJournalFormFooterRight.tsx b/src/containers/Accounting/MakeJournal/MakeJournalFormFooterRight.tsx index df441211b..3aecd7e3d 100644 --- a/src/containers/Accounting/MakeJournal/MakeJournalFormFooterRight.tsx +++ b/src/containers/Accounting/MakeJournal/MakeJournalFormFooterRight.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { diff --git a/src/containers/Accounting/MakeJournal/MakeJournalFormTopBar.tsx b/src/containers/Accounting/MakeJournal/MakeJournalFormTopBar.tsx index ac4f64826..784fe7906 100644 --- a/src/containers/Accounting/MakeJournal/MakeJournalFormTopBar.tsx +++ b/src/containers/Accounting/MakeJournal/MakeJournalFormTopBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Button, Alignment, NavbarGroup, Classes } from '@blueprintjs/core'; diff --git a/src/containers/Accounting/MakeJournal/MakeJournalProvider.tsx b/src/containers/Accounting/MakeJournal/MakeJournalProvider.tsx index 949ff5e34..00579a577 100644 --- a/src/containers/Accounting/MakeJournal/MakeJournalProvider.tsx +++ b/src/containers/Accounting/MakeJournal/MakeJournalProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useState } from 'react'; import { Features } from '@/constants'; import { useFeatureCan } from '@/hooks/state'; diff --git a/src/containers/Accounting/MakeJournal/components.tsx b/src/containers/Accounting/MakeJournal/components.tsx index 53578698d..bd393df5a 100644 --- a/src/containers/Accounting/MakeJournal/components.tsx +++ b/src/containers/Accounting/MakeJournal/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Menu, MenuItem, Position, Button } from '@blueprintjs/core'; diff --git a/src/containers/Accounting/MakeJournal/utils.tsx b/src/containers/Accounting/MakeJournal/utils.tsx index 4099b5c78..6144cc069 100644 --- a/src/containers/Accounting/MakeJournal/utils.tsx +++ b/src/containers/Accounting/MakeJournal/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as R from 'ramda'; import moment from 'moment'; diff --git a/src/containers/Accounting/ManualJournalUniversalSearch.tsx b/src/containers/Accounting/ManualJournalUniversalSearch.tsx index ff14aa6ac..60c623ccc 100644 --- a/src/containers/Accounting/ManualJournalUniversalSearch.tsx +++ b/src/containers/Accounting/ManualJournalUniversalSearch.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; import { RESOURCES_TYPES } from '@/constants/resourcesTypes'; import { AbilitySubject, ManualJournalAction } from '@/constants/abilityOption'; diff --git a/src/containers/Accounts/AccountUniversalSearch.tsx b/src/containers/Accounts/AccountUniversalSearch.tsx index 633aea537..cb3701a3c 100644 --- a/src/containers/Accounts/AccountUniversalSearch.tsx +++ b/src/containers/Accounts/AccountUniversalSearch.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; import withDrawerActions from '@/containers/Drawer/withDrawerActions'; diff --git a/src/containers/Accounts/AccountsActionsBar.tsx b/src/containers/Accounts/AccountsActionsBar.tsx index 724541830..435e64935 100644 --- a/src/containers/Accounts/AccountsActionsBar.tsx +++ b/src/containers/Accounts/AccountsActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { isEmpty } from 'lodash'; import { diff --git a/src/containers/Accounts/AccountsAlerts.tsx b/src/containers/Accounts/AccountsAlerts.tsx index ab11ce4c8..228be0edf 100644 --- a/src/containers/Accounts/AccountsAlerts.tsx +++ b/src/containers/Accounts/AccountsAlerts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; const AccountDeleteAlert = React.lazy( diff --git a/src/containers/Accounts/AccountsChart.tsx b/src/containers/Accounts/AccountsChart.tsx index 464d50b37..271e3260d 100644 --- a/src/containers/Accounts/AccountsChart.tsx +++ b/src/containers/Accounts/AccountsChart.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect } from 'react'; import '@/style/pages/Accounts/List.scss'; diff --git a/src/containers/Accounts/AccountsChartProvider.tsx b/src/containers/Accounts/AccountsChartProvider.tsx index 244ce6b59..8ba2a9635 100644 --- a/src/containers/Accounts/AccountsChartProvider.tsx +++ b/src/containers/Accounts/AccountsChartProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext } from 'react'; import { DashboardInsider } from '@/components'; import { useResourceViews, useResourceMeta, useAccounts } from '@/hooks/query'; diff --git a/src/containers/Accounts/AccountsDataTable.tsx b/src/containers/Accounts/AccountsDataTable.tsx index 62eb9c3c0..440b2c6de 100644 --- a/src/containers/Accounts/AccountsDataTable.tsx +++ b/src/containers/Accounts/AccountsDataTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { diff --git a/src/containers/Accounts/AccountsViewsTabs.tsx b/src/containers/Accounts/AccountsViewsTabs.tsx index ada3e04f9..c55792b1b 100644 --- a/src/containers/Accounts/AccountsViewsTabs.tsx +++ b/src/containers/Accounts/AccountsViewsTabs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import { Alignment, Navbar, NavbarGroup } from '@blueprintjs/core'; import intl from 'react-intl-universal'; diff --git a/src/containers/Accounts/components.tsx b/src/containers/Accounts/components.tsx index efe22decc..d3c793f24 100644 --- a/src/containers/Accounts/components.tsx +++ b/src/containers/Accounts/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { diff --git a/src/containers/Accounts/utils.tsx b/src/containers/Accounts/utils.tsx index 23ef56876..3277df6a6 100644 --- a/src/containers/Accounts/utils.tsx +++ b/src/containers/Accounts/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Tag } from '@blueprintjs/core'; diff --git a/src/containers/Accounts/withAccounts.tsx b/src/containers/Accounts/withAccounts.tsx index 15924b8fb..ae6ff2d5e 100644 --- a/src/containers/Accounts/withAccounts.tsx +++ b/src/containers/Accounts/withAccounts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getAccountsTableStateFactory, diff --git a/src/containers/Accounts/withAccountsTableActions.tsx b/src/containers/Accounts/withAccountsTableActions.tsx index b2d92f107..7470940da 100644 --- a/src/containers/Accounts/withAccountsTableActions.tsx +++ b/src/containers/Accounts/withAccountsTableActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { setAccountsTableState, diff --git a/src/containers/Alert/withAlertActions.tsx b/src/containers/Alert/withAlertActions.tsx index 34db38ced..2e9908ae1 100644 --- a/src/containers/Alert/withAlertActions.tsx +++ b/src/containers/Alert/withAlertActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import t from '@/store/types'; diff --git a/src/containers/Alert/withAlertStoreConnect.tsx b/src/containers/Alert/withAlertStoreConnect.tsx index 7600a4e7c..9614190e9 100644 --- a/src/containers/Alert/withAlertStoreConnect.tsx +++ b/src/containers/Alert/withAlertStoreConnect.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { isAlertOpenFactory, diff --git a/src/containers/Alerts/Accounts/AccountActivateAlert.tsx b/src/containers/Alerts/Accounts/AccountActivateAlert.tsx index 3abde1213..962b0ebbe 100644 --- a/src/containers/Alerts/Accounts/AccountActivateAlert.tsx +++ b/src/containers/Alerts/Accounts/AccountActivateAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Alert } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/Accounts/AccountBulkActivateAlert.tsx b/src/containers/Alerts/Accounts/AccountBulkActivateAlert.tsx index d082d69ea..2feebd546 100644 --- a/src/containers/Alerts/Accounts/AccountBulkActivateAlert.tsx +++ b/src/containers/Alerts/Accounts/AccountBulkActivateAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useState } from 'react'; import intl from 'react-intl-universal'; import { Intent, Alert } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/Accounts/AccountBulkDeleteAlert.tsx b/src/containers/Alerts/Accounts/AccountBulkDeleteAlert.tsx index 5c0d4d4cb..20e582de7 100644 --- a/src/containers/Alerts/Accounts/AccountBulkDeleteAlert.tsx +++ b/src/containers/Alerts/Accounts/AccountBulkDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useState } from 'react'; import { FormattedMessage as T } from '@/components'; import intl from 'react-intl-universal'; diff --git a/src/containers/Alerts/Accounts/AccountBulkInactivateAlert.tsx b/src/containers/Alerts/Accounts/AccountBulkInactivateAlert.tsx index e721ce131..b51d34d18 100644 --- a/src/containers/Alerts/Accounts/AccountBulkInactivateAlert.tsx +++ b/src/containers/Alerts/Accounts/AccountBulkInactivateAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useState } from 'react'; import { FormattedMessage as T } from '@/components'; import intl from 'react-intl-universal'; diff --git a/src/containers/Alerts/Accounts/AccountDeleteAlert.tsx b/src/containers/Alerts/Accounts/AccountDeleteAlert.tsx index 780757337..6ac79a11a 100644 --- a/src/containers/Alerts/Accounts/AccountDeleteAlert.tsx +++ b/src/containers/Alerts/Accounts/AccountDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Alert } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/Accounts/AccountInactivateAlert.tsx b/src/containers/Alerts/Accounts/AccountInactivateAlert.tsx index 842016ff4..03e3d3ca6 100644 --- a/src/containers/Alerts/Accounts/AccountInactivateAlert.tsx +++ b/src/containers/Alerts/Accounts/AccountInactivateAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { AppToaster, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Alerts/Accounts/index.tsx b/src/containers/Alerts/Accounts/index.tsx index 724818f93..6f2d43f5a 100644 --- a/src/containers/Alerts/Accounts/index.tsx +++ b/src/containers/Alerts/Accounts/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import AccountDeleteAlert from './AccountDeleteAlert'; export default { diff --git a/src/containers/Alerts/Bills/BillDeleteAlert.tsx b/src/containers/Alerts/Bills/BillDeleteAlert.tsx index cfc8230aa..8d972b439 100644 --- a/src/containers/Alerts/Bills/BillDeleteAlert.tsx +++ b/src/containers/Alerts/Bills/BillDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { AppToaster, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Alerts/Bills/BillLocatedLandedCostDeleteAlert.tsx b/src/containers/Alerts/Bills/BillLocatedLandedCostDeleteAlert.tsx index e8ada16cc..068ac0a8c 100644 --- a/src/containers/Alerts/Bills/BillLocatedLandedCostDeleteAlert.tsx +++ b/src/containers/Alerts/Bills/BillLocatedLandedCostDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, Alert } from '@blueprintjs/core'; import { FormattedMessage as T } from '@/components'; diff --git a/src/containers/Alerts/Bills/BillOpenAlert.tsx b/src/containers/Alerts/Bills/BillOpenAlert.tsx index ba92f4107..831449261 100644 --- a/src/containers/Alerts/Bills/BillOpenAlert.tsx +++ b/src/containers/Alerts/Bills/BillOpenAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { AppToaster, FormattedMessage as T } from '@/components'; import intl from 'react-intl-universal'; diff --git a/src/containers/Alerts/Branches/BranchDeleteAlert.tsx b/src/containers/Alerts/Branches/BranchDeleteAlert.tsx index ec50b6d5c..77681d5a9 100644 --- a/src/containers/Alerts/Branches/BranchDeleteAlert.tsx +++ b/src/containers/Alerts/Branches/BranchDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { diff --git a/src/containers/Alerts/Branches/BranchMarkPrimaryAlert.tsx b/src/containers/Alerts/Branches/BranchMarkPrimaryAlert.tsx index 9e747c28f..1c849b2ef 100644 --- a/src/containers/Alerts/Branches/BranchMarkPrimaryAlert.tsx +++ b/src/containers/Alerts/Branches/BranchMarkPrimaryAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Alert } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/CashFlow/AccountDeleteTransactionAlert.tsx b/src/containers/Alerts/CashFlow/AccountDeleteTransactionAlert.tsx index 9105609a9..a26038764 100644 --- a/src/containers/Alerts/CashFlow/AccountDeleteTransactionAlert.tsx +++ b/src/containers/Alerts/CashFlow/AccountDeleteTransactionAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Alert } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/Contacts/ContactActivateAlert.tsx b/src/containers/Alerts/Contacts/ContactActivateAlert.tsx index 38503e2fa..1a026345e 100644 --- a/src/containers/Alerts/Contacts/ContactActivateAlert.tsx +++ b/src/containers/Alerts/Contacts/ContactActivateAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Alert } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/Contacts/ContactInactivateAlert.tsx b/src/containers/Alerts/Contacts/ContactInactivateAlert.tsx index 4db070c4e..fadc2d800 100644 --- a/src/containers/Alerts/Contacts/ContactInactivateAlert.tsx +++ b/src/containers/Alerts/Contacts/ContactInactivateAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { AppToaster, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Alerts/CreditNotes/CreditNoteDeleteAlert.tsx b/src/containers/Alerts/CreditNotes/CreditNoteDeleteAlert.tsx index 301594e55..7536b9631 100644 --- a/src/containers/Alerts/CreditNotes/CreditNoteDeleteAlert.tsx +++ b/src/containers/Alerts/CreditNotes/CreditNoteDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Alert } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/CreditNotes/CreditNoteOpenedAlert.tsx b/src/containers/Alerts/CreditNotes/CreditNoteOpenedAlert.tsx index 7d1a3f94f..66880c4cf 100644 --- a/src/containers/Alerts/CreditNotes/CreditNoteOpenedAlert.tsx +++ b/src/containers/Alerts/CreditNotes/CreditNoteOpenedAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Alert } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/CreditNotes/ReconcileCreditNoteDeleteAlert.tsx b/src/containers/Alerts/CreditNotes/ReconcileCreditNoteDeleteAlert.tsx index 93613d4b6..6506ed8c2 100644 --- a/src/containers/Alerts/CreditNotes/ReconcileCreditNoteDeleteAlert.tsx +++ b/src/containers/Alerts/CreditNotes/ReconcileCreditNoteDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Alert } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/CreditNotes/RefundCreditNoteDeleteAlert.tsx b/src/containers/Alerts/CreditNotes/RefundCreditNoteDeleteAlert.tsx index f507442bb..6af08e01d 100644 --- a/src/containers/Alerts/CreditNotes/RefundCreditNoteDeleteAlert.tsx +++ b/src/containers/Alerts/CreditNotes/RefundCreditNoteDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Alert } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/Currencies/CurrencyDeleteAlert.tsx b/src/containers/Alerts/Currencies/CurrencyDeleteAlert.tsx index bcb3a036c..af2106fa6 100644 --- a/src/containers/Alerts/Currencies/CurrencyDeleteAlert.tsx +++ b/src/containers/Alerts/Currencies/CurrencyDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { diff --git a/src/containers/Alerts/Customers/CustomerActivateAlert.tsx b/src/containers/Alerts/Customers/CustomerActivateAlert.tsx index 037414dc5..02baae352 100644 --- a/src/containers/Alerts/Customers/CustomerActivateAlert.tsx +++ b/src/containers/Alerts/Customers/CustomerActivateAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Alert } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/Customers/CustomerBulkDeleteAlert.tsx b/src/containers/Alerts/Customers/CustomerBulkDeleteAlert.tsx index 2c2c01fe2..373dcc715 100644 --- a/src/containers/Alerts/Customers/CustomerBulkDeleteAlert.tsx +++ b/src/containers/Alerts/Customers/CustomerBulkDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback, useState } from 'react'; import { FormattedMessage as T } from '@/components'; import intl from 'react-intl-universal'; diff --git a/src/containers/Alerts/Customers/CustomerDeleteAlert.tsx b/src/containers/Alerts/Customers/CustomerDeleteAlert.tsx index 4a2d197a2..b65964870 100644 --- a/src/containers/Alerts/Customers/CustomerDeleteAlert.tsx +++ b/src/containers/Alerts/Customers/CustomerDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import intl from 'react-intl-universal'; import { Intent, Alert } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/Customers/CustomerInactivateAlert.tsx b/src/containers/Alerts/Customers/CustomerInactivateAlert.tsx index c13f31b86..fd2d5e355 100644 --- a/src/containers/Alerts/Customers/CustomerInactivateAlert.tsx +++ b/src/containers/Alerts/Customers/CustomerInactivateAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { AppToaster, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Alerts/Estimates/EstimateApproveAlert.tsx b/src/containers/Alerts/Estimates/EstimateApproveAlert.tsx index af605c6c3..7c8a19e66 100644 --- a/src/containers/Alerts/Estimates/EstimateApproveAlert.tsx +++ b/src/containers/Alerts/Estimates/EstimateApproveAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import intl from 'react-intl-universal'; import { AppToaster, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Alerts/Estimates/EstimateDeleteAlert.tsx b/src/containers/Alerts/Estimates/EstimateDeleteAlert.tsx index d78f0fd4f..ff2c8c30b 100644 --- a/src/containers/Alerts/Estimates/EstimateDeleteAlert.tsx +++ b/src/containers/Alerts/Estimates/EstimateDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import intl from 'react-intl-universal'; import { Intent, Alert } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/Estimates/EstimateDeliveredAlert.tsx b/src/containers/Alerts/Estimates/EstimateDeliveredAlert.tsx index e0dcc2bda..32375393a 100644 --- a/src/containers/Alerts/Estimates/EstimateDeliveredAlert.tsx +++ b/src/containers/Alerts/Estimates/EstimateDeliveredAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { AppToaster, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Alerts/Estimates/EstimateRejectAlert.tsx b/src/containers/Alerts/Estimates/EstimateRejectAlert.tsx index 2b1dcf811..0c8f0cf86 100644 --- a/src/containers/Alerts/Estimates/EstimateRejectAlert.tsx +++ b/src/containers/Alerts/Estimates/EstimateRejectAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { AppToaster, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Alerts/ExchangeRates/ExchangeRateBulkDeleteAlert.tsx b/src/containers/Alerts/ExchangeRates/ExchangeRateBulkDeleteAlert.tsx index e22e84aac..cc04530f8 100644 --- a/src/containers/Alerts/ExchangeRates/ExchangeRateBulkDeleteAlert.tsx +++ b/src/containers/Alerts/ExchangeRates/ExchangeRateBulkDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useState } from 'react'; import { FormattedMessage as T } from '@/components'; import intl from 'react-intl-universal'; diff --git a/src/containers/Alerts/ExchangeRates/ExchangeRateDeleteAlert.tsx b/src/containers/Alerts/ExchangeRates/ExchangeRateDeleteAlert.tsx index 58c8262ae..098d2ca8f 100644 --- a/src/containers/Alerts/ExchangeRates/ExchangeRateDeleteAlert.tsx +++ b/src/containers/Alerts/ExchangeRates/ExchangeRateDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { diff --git a/src/containers/Alerts/Expenses/ExpenseBulkDeleteAlert.tsx b/src/containers/Alerts/Expenses/ExpenseBulkDeleteAlert.tsx index fb01e6a4e..d62a68dc3 100644 --- a/src/containers/Alerts/Expenses/ExpenseBulkDeleteAlert.tsx +++ b/src/containers/Alerts/Expenses/ExpenseBulkDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FormattedMessage as T } from '@/components'; import intl from 'react-intl-universal'; diff --git a/src/containers/Alerts/Expenses/ExpenseDeleteAlert.tsx b/src/containers/Alerts/Expenses/ExpenseDeleteAlert.tsx index f3e27436b..f2bc19890 100644 --- a/src/containers/Alerts/Expenses/ExpenseDeleteAlert.tsx +++ b/src/containers/Alerts/Expenses/ExpenseDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { AppToaster, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Alerts/Expenses/ExpenseDeleteEntriesAlert.tsx b/src/containers/Alerts/Expenses/ExpenseDeleteEntriesAlert.tsx index 4c1411fbe..88c33e53d 100644 --- a/src/containers/Alerts/Expenses/ExpenseDeleteEntriesAlert.tsx +++ b/src/containers/Alerts/Expenses/ExpenseDeleteEntriesAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, Alert } from '@blueprintjs/core'; import { FormattedMessage as T } from '@/components'; diff --git a/src/containers/Alerts/Expenses/ExpensePublishAlert.tsx b/src/containers/Alerts/Expenses/ExpensePublishAlert.tsx index aec7d7a14..bbea1ccae 100644 --- a/src/containers/Alerts/Expenses/ExpensePublishAlert.tsx +++ b/src/containers/Alerts/Expenses/ExpensePublishAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Alert } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/Invoices/CancelBadDebtAlert.tsx b/src/containers/Alerts/Invoices/CancelBadDebtAlert.tsx index 57a07036d..a2d1e95f4 100644 --- a/src/containers/Alerts/Invoices/CancelBadDebtAlert.tsx +++ b/src/containers/Alerts/Invoices/CancelBadDebtAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { AppToaster, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Alerts/Invoices/InvoiceDeleteAlert.tsx b/src/containers/Alerts/Invoices/InvoiceDeleteAlert.tsx index eb4adb057..7b03f9950 100644 --- a/src/containers/Alerts/Invoices/InvoiceDeleteAlert.tsx +++ b/src/containers/Alerts/Invoices/InvoiceDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Alert } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/Invoices/InvoiceDeliverAlert.tsx b/src/containers/Alerts/Invoices/InvoiceDeliverAlert.tsx index 6d65179e1..8aa585670 100644 --- a/src/containers/Alerts/Invoices/InvoiceDeliverAlert.tsx +++ b/src/containers/Alerts/Invoices/InvoiceDeliverAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { AppToaster, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Alerts/Items/InventoryAdjustmentDeleteAlert.tsx b/src/containers/Alerts/Items/InventoryAdjustmentDeleteAlert.tsx index 6decf603a..b412f4a92 100644 --- a/src/containers/Alerts/Items/InventoryAdjustmentDeleteAlert.tsx +++ b/src/containers/Alerts/Items/InventoryAdjustmentDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Alert } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/Items/InventoryAdjustmentPublishAlert.tsx b/src/containers/Alerts/Items/InventoryAdjustmentPublishAlert.tsx index b6ef6734d..e90506455 100644 --- a/src/containers/Alerts/Items/InventoryAdjustmentPublishAlert.tsx +++ b/src/containers/Alerts/Items/InventoryAdjustmentPublishAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Alert } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/Items/ItemActivateAlert.tsx b/src/containers/Alerts/Items/ItemActivateAlert.tsx index 65e8539d0..be7b72939 100644 --- a/src/containers/Alerts/Items/ItemActivateAlert.tsx +++ b/src/containers/Alerts/Items/ItemActivateAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { AppToaster, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Alerts/Items/ItemBulkDeleteAlert.tsx b/src/containers/Alerts/Items/ItemBulkDeleteAlert.tsx index a1fa3ac44..1f4f7e357 100644 --- a/src/containers/Alerts/Items/ItemBulkDeleteAlert.tsx +++ b/src/containers/Alerts/Items/ItemBulkDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useState } from 'react'; import {AppToaster, FormattedMessage as T } from '@/components'; import intl from 'react-intl-universal'; diff --git a/src/containers/Alerts/Items/ItemCategoryBulkDeleteAlert.tsx b/src/containers/Alerts/Items/ItemCategoryBulkDeleteAlert.tsx index eb4deab7c..de0fd5809 100644 --- a/src/containers/Alerts/Items/ItemCategoryBulkDeleteAlert.tsx +++ b/src/containers/Alerts/Items/ItemCategoryBulkDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useState } from 'react'; import intl from 'react-intl-universal'; import { FormattedMessage as T, FormattedHTMLMessage } from '@/components'; diff --git a/src/containers/Alerts/Items/ItemCategoryDeleteAlert.tsx b/src/containers/Alerts/Items/ItemCategoryDeleteAlert.tsx index 796c7323e..f497119b2 100644 --- a/src/containers/Alerts/Items/ItemCategoryDeleteAlert.tsx +++ b/src/containers/Alerts/Items/ItemCategoryDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Alert } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/Items/ItemDeleteAlert.tsx b/src/containers/Alerts/Items/ItemDeleteAlert.tsx index 09504f504..af2425f8f 100644 --- a/src/containers/Alerts/Items/ItemDeleteAlert.tsx +++ b/src/containers/Alerts/Items/ItemDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Alert } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/Items/ItemInactivateAlert.tsx b/src/containers/Alerts/Items/ItemInactivateAlert.tsx index 46bb26b33..fef7bea41 100644 --- a/src/containers/Alerts/Items/ItemInactivateAlert.tsx +++ b/src/containers/Alerts/Items/ItemInactivateAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { AppToaster, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Alerts/ItemsEntries/ItemsEntriesDeleteAlert.tsx b/src/containers/Alerts/ItemsEntries/ItemsEntriesDeleteAlert.tsx index 4c0c9e0a7..e1f178a3d 100644 --- a/src/containers/Alerts/ItemsEntries/ItemsEntriesDeleteAlert.tsx +++ b/src/containers/Alerts/ItemsEntries/ItemsEntriesDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, Alert } from '@blueprintjs/core'; import { FormattedMessage as T } from '@/components'; diff --git a/src/containers/Alerts/ManualJournals/JournalBulkDeleteAlert.tsx b/src/containers/Alerts/ManualJournals/JournalBulkDeleteAlert.tsx index 3fedd56c9..e44d9affc 100644 --- a/src/containers/Alerts/ManualJournals/JournalBulkDeleteAlert.tsx +++ b/src/containers/Alerts/ManualJournals/JournalBulkDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck diff --git a/src/containers/Alerts/ManualJournals/JournalDeleteAlert.tsx b/src/containers/Alerts/ManualJournals/JournalDeleteAlert.tsx index d7d435ce7..922767d7b 100644 --- a/src/containers/Alerts/ManualJournals/JournalDeleteAlert.tsx +++ b/src/containers/Alerts/ManualJournals/JournalDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Alert } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/ManualJournals/JournalDeleteEntriesAlert.tsx b/src/containers/Alerts/ManualJournals/JournalDeleteEntriesAlert.tsx index 0d72cf917..370ce50b1 100644 --- a/src/containers/Alerts/ManualJournals/JournalDeleteEntriesAlert.tsx +++ b/src/containers/Alerts/ManualJournals/JournalDeleteEntriesAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, Alert } from '@blueprintjs/core'; import { FormattedMessage as T } from '@/components'; diff --git a/src/containers/Alerts/ManualJournals/JournalPublishAlert.tsx b/src/containers/Alerts/ManualJournals/JournalPublishAlert.tsx index d383b81f8..32030cd73 100644 --- a/src/containers/Alerts/ManualJournals/JournalPublishAlert.tsx +++ b/src/containers/Alerts/ManualJournals/JournalPublishAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Alert } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/PaymentMades/ChangingFullAmountAlert.tsx b/src/containers/Alerts/PaymentMades/ChangingFullAmountAlert.tsx index 0c31a6253..22380a3be 100644 --- a/src/containers/Alerts/PaymentMades/ChangingFullAmountAlert.tsx +++ b/src/containers/Alerts/PaymentMades/ChangingFullAmountAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, Alert } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/PaymentMades/ClearTransactionAlert.tsx b/src/containers/Alerts/PaymentMades/ClearTransactionAlert.tsx index 2de0b4855..cc7ca487f 100644 --- a/src/containers/Alerts/PaymentMades/ClearTransactionAlert.tsx +++ b/src/containers/Alerts/PaymentMades/ClearTransactionAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, Alert } from '@blueprintjs/core'; import { FormattedMessage as T } from '@/components'; diff --git a/src/containers/Alerts/PaymentMades/ClearningAllLinesAlert.tsx b/src/containers/Alerts/PaymentMades/ClearningAllLinesAlert.tsx index 0e4acbcf3..1e5491b49 100644 --- a/src/containers/Alerts/PaymentMades/ClearningAllLinesAlert.tsx +++ b/src/containers/Alerts/PaymentMades/ClearningAllLinesAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, Alert } from '@blueprintjs/core'; import { FormattedMessage as T } from '@/components'; diff --git a/src/containers/Alerts/PaymentMades/PaymentMadeDeleteAlert.tsx b/src/containers/Alerts/PaymentMades/PaymentMadeDeleteAlert.tsx index 650fcb98f..32b0c32c7 100644 --- a/src/containers/Alerts/PaymentMades/PaymentMadeDeleteAlert.tsx +++ b/src/containers/Alerts/PaymentMades/PaymentMadeDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { AppToaster, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Alerts/PaymentReceives/ClearingAllLinesAlert.tsx b/src/containers/Alerts/PaymentReceives/ClearingAllLinesAlert.tsx index 65e3b1e14..9fba09183 100644 --- a/src/containers/Alerts/PaymentReceives/ClearingAllLinesAlert.tsx +++ b/src/containers/Alerts/PaymentReceives/ClearingAllLinesAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, Alert } from '@blueprintjs/core'; import { FormattedMessage as T } from '@/components'; diff --git a/src/containers/Alerts/PaymentReceives/PaymentReceiveDeleteAlert.tsx b/src/containers/Alerts/PaymentReceives/PaymentReceiveDeleteAlert.tsx index e61387d49..f7fe58471 100644 --- a/src/containers/Alerts/PaymentReceives/PaymentReceiveDeleteAlert.tsx +++ b/src/containers/Alerts/PaymentReceives/PaymentReceiveDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { diff --git a/src/containers/Alerts/Receipts/ReceiptCloseAlert.tsx b/src/containers/Alerts/Receipts/ReceiptCloseAlert.tsx index c79a24ee2..9307c9447 100644 --- a/src/containers/Alerts/Receipts/ReceiptCloseAlert.tsx +++ b/src/containers/Alerts/Receipts/ReceiptCloseAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { AppToaster, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Alerts/Receipts/ReceiptDeleteAlert.tsx b/src/containers/Alerts/Receipts/ReceiptDeleteAlert.tsx index 27e9d8298..124b6b451 100644 --- a/src/containers/Alerts/Receipts/ReceiptDeleteAlert.tsx +++ b/src/containers/Alerts/Receipts/ReceiptDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { diff --git a/src/containers/Alerts/Roles/RoleDeleteAlert.tsx b/src/containers/Alerts/Roles/RoleDeleteAlert.tsx index 52d5eac02..deaba6ba6 100644 --- a/src/containers/Alerts/Roles/RoleDeleteAlert.tsx +++ b/src/containers/Alerts/Roles/RoleDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { diff --git a/src/containers/Alerts/TransactionLocking/cancelUnlockingPartialAlert.tsx b/src/containers/Alerts/TransactionLocking/cancelUnlockingPartialAlert.tsx index 50a1727fb..92b88d2d1 100644 --- a/src/containers/Alerts/TransactionLocking/cancelUnlockingPartialAlert.tsx +++ b/src/containers/Alerts/TransactionLocking/cancelUnlockingPartialAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Alert } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/Users/UserActivateAlert.tsx b/src/containers/Alerts/Users/UserActivateAlert.tsx index 98965fd9d..0a6f1bb9e 100644 --- a/src/containers/Alerts/Users/UserActivateAlert.tsx +++ b/src/containers/Alerts/Users/UserActivateAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Alert, Intent } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/Users/UserDeleteAlert.tsx b/src/containers/Alerts/Users/UserDeleteAlert.tsx index 6af9b470e..84d651f80 100644 --- a/src/containers/Alerts/Users/UserDeleteAlert.tsx +++ b/src/containers/Alerts/Users/UserDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Alert } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/Users/UserInactivateAlert.tsx b/src/containers/Alerts/Users/UserInactivateAlert.tsx index d8463778c..f4b8bdaee 100644 --- a/src/containers/Alerts/Users/UserInactivateAlert.tsx +++ b/src/containers/Alerts/Users/UserInactivateAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { AppToaster, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Alerts/VendorCeditNotes/ReconcileVendorCreditDeleteAlert.tsx b/src/containers/Alerts/VendorCeditNotes/ReconcileVendorCreditDeleteAlert.tsx index fd6bdc1fc..1c1f8849e 100644 --- a/src/containers/Alerts/VendorCeditNotes/ReconcileVendorCreditDeleteAlert.tsx +++ b/src/containers/Alerts/VendorCeditNotes/ReconcileVendorCreditDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Alert } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/VendorCeditNotes/RefundVendorCreditDeleteAlert.tsx b/src/containers/Alerts/VendorCeditNotes/RefundVendorCreditDeleteAlert.tsx index a8a6c9363..a8cf4fc4e 100644 --- a/src/containers/Alerts/VendorCeditNotes/RefundVendorCreditDeleteAlert.tsx +++ b/src/containers/Alerts/VendorCeditNotes/RefundVendorCreditDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Alert } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/VendorCeditNotes/VendorCreditDeleteAlert.tsx b/src/containers/Alerts/VendorCeditNotes/VendorCreditDeleteAlert.tsx index 04c6e7a5c..440c5972c 100644 --- a/src/containers/Alerts/VendorCeditNotes/VendorCreditDeleteAlert.tsx +++ b/src/containers/Alerts/VendorCeditNotes/VendorCreditDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Alert } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/VendorCeditNotes/VendorCreditOpenedAlert.tsx b/src/containers/Alerts/VendorCeditNotes/VendorCreditOpenedAlert.tsx index a14f0f1bf..269e72968 100644 --- a/src/containers/Alerts/VendorCeditNotes/VendorCreditOpenedAlert.tsx +++ b/src/containers/Alerts/VendorCeditNotes/VendorCreditOpenedAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { AppToaster, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Alerts/Vendors/VendorActivateAlert.tsx b/src/containers/Alerts/Vendors/VendorActivateAlert.tsx index 3bb8fa7ca..8191c81e9 100644 --- a/src/containers/Alerts/Vendors/VendorActivateAlert.tsx +++ b/src/containers/Alerts/Vendors/VendorActivateAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { AppToaster, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Alerts/Vendors/VendorDeleteAlert.tsx b/src/containers/Alerts/Vendors/VendorDeleteAlert.tsx index 93d1d612a..d170a34ec 100644 --- a/src/containers/Alerts/Vendors/VendorDeleteAlert.tsx +++ b/src/containers/Alerts/Vendors/VendorDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import intl from 'react-intl-universal'; import { Intent, Alert } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/Vendors/VendorInactivateAlert.tsx b/src/containers/Alerts/Vendors/VendorInactivateAlert.tsx index 655212fea..0e4366035 100644 --- a/src/containers/Alerts/Vendors/VendorInactivateAlert.tsx +++ b/src/containers/Alerts/Vendors/VendorInactivateAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Alert } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/Warehouses/WarehouseDeleteAlert.tsx b/src/containers/Alerts/Warehouses/WarehouseDeleteAlert.tsx index f0930ed85..69199a33c 100644 --- a/src/containers/Alerts/Warehouses/WarehouseDeleteAlert.tsx +++ b/src/containers/Alerts/Warehouses/WarehouseDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Alert } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/WarehousesTransfer/TransferredWarehouseTransferAlert.tsx b/src/containers/Alerts/WarehousesTransfer/TransferredWarehouseTransferAlert.tsx index 5b0d8db93..78d6d18ce 100644 --- a/src/containers/Alerts/WarehousesTransfer/TransferredWarehouseTransferAlert.tsx +++ b/src/containers/Alerts/WarehousesTransfer/TransferredWarehouseTransferAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { AppToaster, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Alerts/WarehousesTransfer/WarehouseMarkPrimaryAlert.tsx b/src/containers/Alerts/WarehousesTransfer/WarehouseMarkPrimaryAlert.tsx index 202639ecd..30f928de3 100644 --- a/src/containers/Alerts/WarehousesTransfer/WarehouseMarkPrimaryAlert.tsx +++ b/src/containers/Alerts/WarehousesTransfer/WarehouseMarkPrimaryAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Alert } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/WarehousesTransfer/WarehouseTransferDeleteAlert.tsx b/src/containers/Alerts/WarehousesTransfer/WarehouseTransferDeleteAlert.tsx index 3f47c9468..317c04ef4 100644 --- a/src/containers/Alerts/WarehousesTransfer/WarehouseTransferDeleteAlert.tsx +++ b/src/containers/Alerts/WarehousesTransfer/WarehouseTransferDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Alert } from '@blueprintjs/core'; diff --git a/src/containers/Alerts/WarehousesTransfer/WarehouseTransferInitiateAlert.tsx b/src/containers/Alerts/WarehousesTransfer/WarehouseTransferInitiateAlert.tsx index a38474f42..fc78e4500 100644 --- a/src/containers/Alerts/WarehousesTransfer/WarehouseTransferInitiateAlert.tsx +++ b/src/containers/Alerts/WarehousesTransfer/WarehouseTransferInitiateAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { AppToaster, FormattedMessage as T } from '@/components'; diff --git a/src/containers/AlertsContainer/components.tsx b/src/containers/AlertsContainer/components.tsx index d325e61fb..8ab5e926d 100644 --- a/src/containers/AlertsContainer/components.tsx +++ b/src/containers/AlertsContainer/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { Suspense } from 'react'; import styled from 'styled-components'; import clsx from 'classnames'; diff --git a/src/containers/AlertsContainer/index.tsx b/src/containers/AlertsContainer/index.tsx index bfc591513..0920510ac 100644 --- a/src/containers/AlertsContainer/index.tsx +++ b/src/containers/AlertsContainer/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { AlertLazy } from './components' import registered from './registered'; diff --git a/src/containers/AlertsContainer/registered.tsx b/src/containers/AlertsContainer/registered.tsx index 309a42cd1..89d12ac3d 100644 --- a/src/containers/AlertsContainer/registered.tsx +++ b/src/containers/AlertsContainer/registered.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import AccountsAlerts from '@/containers/Accounts/AccountsAlerts'; import ItemsAlerts from '@/containers/Items/ItemsAlerts'; import ItemsCategoriesAlerts from '@/containers/ItemsCategories/ItemsCategoriesAlerts'; diff --git a/src/containers/Authentication/AuthCopyright.tsx b/src/containers/Authentication/AuthCopyright.tsx index aa420e5a5..6fcc71fd4 100644 --- a/src/containers/Authentication/AuthCopyright.tsx +++ b/src/containers/Authentication/AuthCopyright.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import intl from 'react-intl-universal'; diff --git a/src/containers/Authentication/AuthInsider.tsx b/src/containers/Authentication/AuthInsider.tsx index 28ecc9d78..9a683ab3f 100644 --- a/src/containers/Authentication/AuthInsider.tsx +++ b/src/containers/Authentication/AuthInsider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import AuthCopyright from './AuthCopyright'; diff --git a/src/containers/Authentication/InviteAccept.tsx b/src/containers/Authentication/InviteAccept.tsx index 08614fa05..306d468f8 100644 --- a/src/containers/Authentication/InviteAccept.tsx +++ b/src/containers/Authentication/InviteAccept.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useParams } from 'react-router-dom'; import InviteAcceptForm from './InviteAcceptForm'; diff --git a/src/containers/Authentication/InviteAcceptForm.tsx b/src/containers/Authentication/InviteAcceptForm.tsx index 6bca2c2ef..4d6b00799 100644 --- a/src/containers/Authentication/InviteAcceptForm.tsx +++ b/src/containers/Authentication/InviteAcceptForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Formik } from 'formik'; diff --git a/src/containers/Authentication/InviteAcceptFormContent.tsx b/src/containers/Authentication/InviteAcceptFormContent.tsx index a58c925ce..9b800be76 100644 --- a/src/containers/Authentication/InviteAcceptFormContent.tsx +++ b/src/containers/Authentication/InviteAcceptFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Button, InputGroup, Intent, FormGroup } from '@blueprintjs/core'; diff --git a/src/containers/Authentication/InviteAcceptProvider.tsx b/src/containers/Authentication/InviteAcceptProvider.tsx index ec0072a08..5df701f6e 100644 --- a/src/containers/Authentication/InviteAcceptProvider.tsx +++ b/src/containers/Authentication/InviteAcceptProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useContext } from 'react'; import { useInviteMetaByToken, useAuthInviteAccept } from '@/hooks/query'; import { InviteAcceptLoading } from './components'; diff --git a/src/containers/Authentication/Login.tsx b/src/containers/Authentication/Login.tsx index 9e842e4db..2daca3f6c 100644 --- a/src/containers/Authentication/Login.tsx +++ b/src/containers/Authentication/Login.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Link } from 'react-router-dom'; import { Formik } from 'formik'; diff --git a/src/containers/Authentication/LoginForm.tsx b/src/containers/Authentication/LoginForm.tsx index 2f08899e1..22b806774 100644 --- a/src/containers/Authentication/LoginForm.tsx +++ b/src/containers/Authentication/LoginForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, diff --git a/src/containers/Authentication/Register.tsx b/src/containers/Authentication/Register.tsx index b8d7e6572..bdbff0d47 100644 --- a/src/containers/Authentication/Register.tsx +++ b/src/containers/Authentication/Register.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import intl from 'react-intl-universal'; import { Formik } from 'formik'; diff --git a/src/containers/Authentication/RegisterForm.tsx b/src/containers/Authentication/RegisterForm.tsx index 520194ed3..8f44056a4 100644 --- a/src/containers/Authentication/RegisterForm.tsx +++ b/src/containers/Authentication/RegisterForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { diff --git a/src/containers/Authentication/ResetPassword.tsx b/src/containers/Authentication/ResetPassword.tsx index d02e4dbef..027f2da1b 100644 --- a/src/containers/Authentication/ResetPassword.tsx +++ b/src/containers/Authentication/ResetPassword.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import intl from 'react-intl-universal'; import { Formik } from 'formik'; diff --git a/src/containers/Authentication/ResetPasswordForm.tsx b/src/containers/Authentication/ResetPasswordForm.tsx index 39f7e7134..6b0233a9f 100644 --- a/src/containers/Authentication/ResetPasswordForm.tsx +++ b/src/containers/Authentication/ResetPasswordForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, InputGroup, Intent, FormGroup } from '@blueprintjs/core'; import { Form, ErrorMessage, FastField } from 'formik'; diff --git a/src/containers/Authentication/SendResetPassword.tsx b/src/containers/Authentication/SendResetPassword.tsx index 682d14c07..dd2a67a50 100644 --- a/src/containers/Authentication/SendResetPassword.tsx +++ b/src/containers/Authentication/SendResetPassword.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import intl from 'react-intl-universal'; import { Formik } from 'formik'; diff --git a/src/containers/Authentication/SendResetPasswordForm.tsx b/src/containers/Authentication/SendResetPasswordForm.tsx index d5d415267..d8439e971 100644 --- a/src/containers/Authentication/SendResetPasswordForm.tsx +++ b/src/containers/Authentication/SendResetPasswordForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, InputGroup, Intent, FormGroup } from '@blueprintjs/core'; import { Form, ErrorMessage, FastField } from 'formik'; diff --git a/src/containers/Authentication/components.tsx b/src/containers/Authentication/components.tsx index 3850da41c..a9e36dbb0 100644 --- a/src/containers/Authentication/components.tsx +++ b/src/containers/Authentication/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import ContentLoader from 'react-content-loader'; import { If, Icon, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Authentication/utils.tsx b/src/containers/Authentication/utils.tsx index 0318e0959..1cb6e694b 100644 --- a/src/containers/Authentication/utils.tsx +++ b/src/containers/Authentication/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; import { Intent } from '@blueprintjs/core'; diff --git a/src/containers/Authentication/withAuthentication.tsx b/src/containers/Authentication/withAuthentication.tsx index a0dd67341..b473a9d4c 100644 --- a/src/containers/Authentication/withAuthentication.tsx +++ b/src/containers/Authentication/withAuthentication.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { isAuthenticated } from '@/store/authentication/authentication.reducer'; import { connect } from 'react-redux'; diff --git a/src/containers/Authentication/withAuthenticationActions.tsx b/src/containers/Authentication/withAuthenticationActions.tsx index a07c3eeb1..a510e9ffe 100644 --- a/src/containers/Authentication/withAuthenticationActions.tsx +++ b/src/containers/Authentication/withAuthenticationActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; const mapDispatchToProps = (dispatch) => ({ diff --git a/src/containers/CashFlow/AccountTransactions/AccountTransactionsActionsBar.tsx b/src/containers/CashFlow/AccountTransactions/AccountTransactionsActionsBar.tsx index 2a1292cfe..43ec2bb9f 100644 --- a/src/containers/CashFlow/AccountTransactions/AccountTransactionsActionsBar.tsx +++ b/src/containers/CashFlow/AccountTransactions/AccountTransactionsActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, diff --git a/src/containers/CashFlow/AccountTransactions/AccountTransactionsAlerts.tsx b/src/containers/CashFlow/AccountTransactions/AccountTransactionsAlerts.tsx index f0bc2e133..cbb0a0278 100644 --- a/src/containers/CashFlow/AccountTransactions/AccountTransactionsAlerts.tsx +++ b/src/containers/CashFlow/AccountTransactions/AccountTransactionsAlerts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; const AccountDeleteTransactionAlert = React.lazy( diff --git a/src/containers/CashFlow/AccountTransactions/AccountTransactionsDataTable.tsx b/src/containers/CashFlow/AccountTransactions/AccountTransactionsDataTable.tsx index 8adb93b4b..cd189a933 100644 --- a/src/containers/CashFlow/AccountTransactions/AccountTransactionsDataTable.tsx +++ b/src/containers/CashFlow/AccountTransactions/AccountTransactionsDataTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/CashFlow/AccountTransactions/AccountTransactionsDetailsBar.tsx b/src/containers/CashFlow/AccountTransactions/AccountTransactionsDetailsBar.tsx index 2a3ec52d2..375dd3736 100644 --- a/src/containers/CashFlow/AccountTransactions/AccountTransactionsDetailsBar.tsx +++ b/src/containers/CashFlow/AccountTransactions/AccountTransactionsDetailsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/CashFlow/AccountTransactions/AccountTransactionsList.tsx b/src/containers/CashFlow/AccountTransactions/AccountTransactionsList.tsx index 7ddd0fe61..27fd17af2 100644 --- a/src/containers/CashFlow/AccountTransactions/AccountTransactionsList.tsx +++ b/src/containers/CashFlow/AccountTransactions/AccountTransactionsList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/CashFlow/AccountTransactions/AccountTransactionsProvider.tsx b/src/containers/CashFlow/AccountTransactions/AccountTransactionsProvider.tsx index 35c2cfa64..744863b87 100644 --- a/src/containers/CashFlow/AccountTransactions/AccountTransactionsProvider.tsx +++ b/src/containers/CashFlow/AccountTransactions/AccountTransactionsProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useParams } from 'react-router-dom'; import { flatten, map } from 'lodash'; diff --git a/src/containers/CashFlow/AccountTransactions/components.tsx b/src/containers/CashFlow/AccountTransactions/components.tsx index 0e5a446c5..18e75161e 100644 --- a/src/containers/CashFlow/AccountTransactions/components.tsx +++ b/src/containers/CashFlow/AccountTransactions/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Menu, MenuItem, MenuDivider } from '@blueprintjs/core'; diff --git a/src/containers/CashFlow/AccountTransactions/utils.tsx b/src/containers/CashFlow/AccountTransactions/utils.tsx index 5d25a6c7c..924db13b4 100644 --- a/src/containers/CashFlow/AccountTransactions/utils.tsx +++ b/src/containers/CashFlow/AccountTransactions/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, diff --git a/src/containers/CashFlow/AccountTransactions/withCashflowAccounts.tsx b/src/containers/CashFlow/AccountTransactions/withCashflowAccounts.tsx index c5dcdc24a..f9d2b8659 100644 --- a/src/containers/CashFlow/AccountTransactions/withCashflowAccounts.tsx +++ b/src/containers/CashFlow/AccountTransactions/withCashflowAccounts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getCashflowAccountsTableStateFactory } from '@/store/CashflowAccounts/CashflowAccounts.selectors'; diff --git a/src/containers/CashFlow/AccountTransactions/withCashflowAccountsTableActions.tsx b/src/containers/CashFlow/AccountTransactions/withCashflowAccountsTableActions.tsx index 5457ea1ec..f52f8d0e8 100644 --- a/src/containers/CashFlow/AccountTransactions/withCashflowAccountsTableActions.tsx +++ b/src/containers/CashFlow/AccountTransactions/withCashflowAccountsTableActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { setCashflowAccountsTableState, diff --git a/src/containers/CashFlow/CashFlowAccounts/CashFlowAccountsActionsBar.tsx b/src/containers/CashFlow/CashFlowAccounts/CashFlowAccountsActionsBar.tsx index ca26e3781..45c9d1d76 100644 --- a/src/containers/CashFlow/CashFlowAccounts/CashFlowAccountsActionsBar.tsx +++ b/src/containers/CashFlow/CashFlowAccounts/CashFlowAccountsActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, diff --git a/src/containers/CashFlow/CashFlowAccounts/CashFlowAccountsDataTable.tsx b/src/containers/CashFlow/CashFlowAccounts/CashFlowAccountsDataTable.tsx index 76174dab2..64e9ac18e 100644 --- a/src/containers/CashFlow/CashFlowAccounts/CashFlowAccountsDataTable.tsx +++ b/src/containers/CashFlow/CashFlowAccounts/CashFlowAccountsDataTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { TABLES } from '@/constants/tables'; diff --git a/src/containers/CashFlow/CashFlowAccounts/CashFlowAccountsList.tsx b/src/containers/CashFlow/CashFlowAccounts/CashFlowAccountsList.tsx index 0d09b88d7..b0a7ed2a6 100644 --- a/src/containers/CashFlow/CashFlowAccounts/CashFlowAccountsList.tsx +++ b/src/containers/CashFlow/CashFlowAccounts/CashFlowAccountsList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect } from 'react'; import { compose } from 'lodash/fp'; diff --git a/src/containers/CashFlow/CashFlowAccounts/CashFlowAccountsProvider.tsx b/src/containers/CashFlow/CashFlowAccounts/CashFlowAccountsProvider.tsx index 4c6d1bab4..009e9b74f 100644 --- a/src/containers/CashFlow/CashFlowAccounts/CashFlowAccountsProvider.tsx +++ b/src/containers/CashFlow/CashFlowAccounts/CashFlowAccountsProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DashboardInsider } from '@/components/Dashboard'; diff --git a/src/containers/CashFlow/CashFlowAccounts/CashflowAccountsGrid.tsx b/src/containers/CashFlow/CashFlowAccounts/CashflowAccountsGrid.tsx index fc9f771d4..b28e871e1 100644 --- a/src/containers/CashFlow/CashFlowAccounts/CashflowAccountsGrid.tsx +++ b/src/containers/CashFlow/CashFlowAccounts/CashflowAccountsGrid.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/CashFlow/CashFlowAccounts/components.tsx b/src/containers/CashFlow/CashFlowAccounts/components.tsx index d9c733b96..1bbf58321 100644 --- a/src/containers/CashFlow/CashFlowAccounts/components.tsx +++ b/src/containers/CashFlow/CashFlowAccounts/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; diff --git a/src/containers/CashFlow/CashFlowAccounts/utils.tsx b/src/containers/CashFlow/CashFlowAccounts/utils.tsx index 088df6c11..552c09d75 100644 --- a/src/containers/CashFlow/CashFlowAccounts/utils.tsx +++ b/src/containers/CashFlow/CashFlowAccounts/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { transformTableStateToQuery } from '@/utils'; /** diff --git a/src/containers/Currencies/withCurrencies.tsx b/src/containers/Currencies/withCurrencies.tsx index 148d4286a..1b1b741d9 100644 --- a/src/containers/Currencies/withCurrencies.tsx +++ b/src/containers/Currencies/withCurrencies.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getCurrenciesList } from '@/store/currencies/currencies.selector'; diff --git a/src/containers/Currencies/withCurrenciesActions.tsx b/src/containers/Currencies/withCurrenciesActions.tsx index df65931a3..5215b14d6 100644 --- a/src/containers/Currencies/withCurrenciesActions.tsx +++ b/src/containers/Currencies/withCurrenciesActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { fetchCurrencies, diff --git a/src/containers/Currencies/withCurrencyDetail.tsx b/src/containers/Currencies/withCurrencyDetail.tsx index 76216925d..7791f8c5d 100644 --- a/src/containers/Currencies/withCurrencyDetail.tsx +++ b/src/containers/Currencies/withCurrencyDetail.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getCurrencyByCode } from '@/store/currencies/currencies.selector'; diff --git a/src/containers/Customers/CustomerForm/CustomerAddressTabs.tsx b/src/containers/Customers/CustomerForm/CustomerAddressTabs.tsx index c9f73072c..07b61e5d3 100644 --- a/src/containers/Customers/CustomerForm/CustomerAddressTabs.tsx +++ b/src/containers/Customers/CustomerForm/CustomerAddressTabs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FormGroup, InputGroup, TextArea } from '@blueprintjs/core'; import { Row, Col } from '@/components'; diff --git a/src/containers/Customers/CustomerForm/CustomerAttachmentTabs.tsx b/src/containers/Customers/CustomerForm/CustomerAttachmentTabs.tsx index e2b1e9e64..fabad4f94 100644 --- a/src/containers/Customers/CustomerForm/CustomerAttachmentTabs.tsx +++ b/src/containers/Customers/CustomerForm/CustomerAttachmentTabs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo, useState, diff --git a/src/containers/Customers/CustomerForm/CustomerFinancialPanel.tsx b/src/containers/Customers/CustomerForm/CustomerFinancialPanel.tsx index 961e4decc..b41312c81 100644 --- a/src/containers/Customers/CustomerForm/CustomerFinancialPanel.tsx +++ b/src/containers/Customers/CustomerForm/CustomerFinancialPanel.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import classNames from 'classnames'; diff --git a/src/containers/Customers/CustomerForm/CustomerFloatingActions.tsx b/src/containers/Customers/CustomerForm/CustomerFloatingActions.tsx index 2e28fe46c..ab0834a30 100644 --- a/src/containers/Customers/CustomerForm/CustomerFloatingActions.tsx +++ b/src/containers/Customers/CustomerForm/CustomerFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { diff --git a/src/containers/Customers/CustomerForm/CustomerForm.schema.tsx b/src/containers/Customers/CustomerForm/CustomerForm.schema.tsx index 6203bfca1..f93810ac3 100644 --- a/src/containers/Customers/CustomerForm/CustomerForm.schema.tsx +++ b/src/containers/Customers/CustomerForm/CustomerForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; diff --git a/src/containers/Customers/CustomerForm/CustomerForm.tsx b/src/containers/Customers/CustomerForm/CustomerForm.tsx index 7adf26da5..ceca8de2c 100644 --- a/src/containers/Customers/CustomerForm/CustomerForm.tsx +++ b/src/containers/Customers/CustomerForm/CustomerForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { CustomerFormProvider } from './CustomerFormProvider'; import CustomerFormFormik from './CustomerFormFormik'; diff --git a/src/containers/Customers/CustomerForm/CustomerFormAfterPrimarySection.tsx b/src/containers/Customers/CustomerForm/CustomerFormAfterPrimarySection.tsx index 34c4e2ed5..ff82a3c2b 100644 --- a/src/containers/Customers/CustomerForm/CustomerFormAfterPrimarySection.tsx +++ b/src/containers/Customers/CustomerForm/CustomerFormAfterPrimarySection.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { FormGroup, InputGroup, ControlGroup } from '@blueprintjs/core'; diff --git a/src/containers/Customers/CustomerForm/CustomerFormFormik.tsx b/src/containers/Customers/CustomerForm/CustomerFormFormik.tsx index 4400e2726..6be5580d2 100644 --- a/src/containers/Customers/CustomerForm/CustomerFormFormik.tsx +++ b/src/containers/Customers/CustomerForm/CustomerFormFormik.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import intl from 'react-intl-universal'; import classNames from 'classnames'; diff --git a/src/containers/Customers/CustomerForm/CustomerFormPage.tsx b/src/containers/Customers/CustomerForm/CustomerFormPage.tsx index 69e029014..d19a5802a 100644 --- a/src/containers/Customers/CustomerForm/CustomerFormPage.tsx +++ b/src/containers/Customers/CustomerForm/CustomerFormPage.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useParams, useHistory } from 'react-router-dom'; import styled from 'styled-components'; diff --git a/src/containers/Customers/CustomerForm/CustomerFormPrimarySection.tsx b/src/containers/Customers/CustomerForm/CustomerFormPrimarySection.tsx index 9a6507778..0e91a76c2 100644 --- a/src/containers/Customers/CustomerForm/CustomerFormPrimarySection.tsx +++ b/src/containers/Customers/CustomerForm/CustomerFormPrimarySection.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import classNames from 'classnames'; diff --git a/src/containers/Customers/CustomerForm/CustomerFormProvider.tsx b/src/containers/Customers/CustomerForm/CustomerFormProvider.tsx index a79863700..aeb767068 100644 --- a/src/containers/Customers/CustomerForm/CustomerFormProvider.tsx +++ b/src/containers/Customers/CustomerForm/CustomerFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useState, createContext } from 'react'; import { useLocation } from 'react-router-dom'; import { diff --git a/src/containers/Customers/CustomerForm/CustomerNotePanel.tsx b/src/containers/Customers/CustomerForm/CustomerNotePanel.tsx index 4429bb1d0..b4e062d1d 100644 --- a/src/containers/Customers/CustomerForm/CustomerNotePanel.tsx +++ b/src/containers/Customers/CustomerForm/CustomerNotePanel.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import { FormGroup, TextArea, Classes } from '@blueprintjs/core'; diff --git a/src/containers/Customers/CustomerForm/CustomerTypeRadioField.tsx b/src/containers/Customers/CustomerForm/CustomerTypeRadioField.tsx index 14cadd761..93a43175a 100644 --- a/src/containers/Customers/CustomerForm/CustomerTypeRadioField.tsx +++ b/src/containers/Customers/CustomerForm/CustomerTypeRadioField.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import classNames from 'classnames'; diff --git a/src/containers/Customers/CustomerForm/CustomersTabs.tsx b/src/containers/Customers/CustomerForm/CustomersTabs.tsx index 314b65fff..72881e983 100644 --- a/src/containers/Customers/CustomerForm/CustomersTabs.tsx +++ b/src/containers/Customers/CustomerForm/CustomersTabs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Tabs, Tab } from '@blueprintjs/core'; diff --git a/src/containers/Customers/CustomerForm/utils.tsx b/src/containers/Customers/CustomerForm/utils.tsx index ba830c844..f230c1fd6 100644 --- a/src/containers/Customers/CustomerForm/utils.tsx +++ b/src/containers/Customers/CustomerForm/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Customers/CustomersAlerts.tsx b/src/containers/Customers/CustomersAlerts.tsx index bfd9bdec7..1c1b1544d 100644 --- a/src/containers/Customers/CustomersAlerts.tsx +++ b/src/containers/Customers/CustomersAlerts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; const CustomerDeleteAlert = React.lazy( diff --git a/src/containers/Customers/CustomersLanding/CustomersActionsBar.tsx b/src/containers/Customers/CustomersLanding/CustomersActionsBar.tsx index 0d8b02144..0afd96e5d 100644 --- a/src/containers/Customers/CustomersLanding/CustomersActionsBar.tsx +++ b/src/containers/Customers/CustomersLanding/CustomersActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { NavbarGroup, diff --git a/src/containers/Customers/CustomersLanding/CustomersEmptyStatus.tsx b/src/containers/Customers/CustomersLanding/CustomersEmptyStatus.tsx index f2e671ca4..8dcc273e4 100644 --- a/src/containers/Customers/CustomersLanding/CustomersEmptyStatus.tsx +++ b/src/containers/Customers/CustomersLanding/CustomersEmptyStatus.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, Intent } from '@blueprintjs/core'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Customers/CustomersLanding/CustomersList.tsx b/src/containers/Customers/CustomersLanding/CustomersList.tsx index 46fea6848..cdf293905 100644 --- a/src/containers/Customers/CustomersLanding/CustomersList.tsx +++ b/src/containers/Customers/CustomersLanding/CustomersList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect } from 'react'; import '@/style/pages/Customers/List.scss'; diff --git a/src/containers/Customers/CustomersLanding/CustomersListProvider.tsx b/src/containers/Customers/CustomersLanding/CustomersListProvider.tsx index e459f6e85..9eca4464a 100644 --- a/src/containers/Customers/CustomersLanding/CustomersListProvider.tsx +++ b/src/containers/Customers/CustomersLanding/CustomersListProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext } from 'react'; import { isEmpty } from 'lodash'; diff --git a/src/containers/Customers/CustomersLanding/CustomersTable.tsx b/src/containers/Customers/CustomersLanding/CustomersTable.tsx index 0ed964518..f886e4eab 100644 --- a/src/containers/Customers/CustomersLanding/CustomersTable.tsx +++ b/src/containers/Customers/CustomersLanding/CustomersTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Customers/CustomersLanding/CustomersViewsTabs.tsx b/src/containers/Customers/CustomersLanding/CustomersViewsTabs.tsx index c930f53af..008ade60c 100644 --- a/src/containers/Customers/CustomersLanding/CustomersViewsTabs.tsx +++ b/src/containers/Customers/CustomersLanding/CustomersViewsTabs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Alignment, Navbar, NavbarGroup } from '@blueprintjs/core'; diff --git a/src/containers/Customers/CustomersLanding/components.tsx b/src/containers/Customers/CustomersLanding/components.tsx index d8ea598c5..5fef5a9ff 100644 --- a/src/containers/Customers/CustomersLanding/components.tsx +++ b/src/containers/Customers/CustomersLanding/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import intl from 'react-intl-universal'; import { diff --git a/src/containers/Customers/CustomersLanding/utils.tsx b/src/containers/Customers/CustomersLanding/utils.tsx index 78b0d83f5..ac00a5f6d 100644 --- a/src/containers/Customers/CustomersLanding/utils.tsx +++ b/src/containers/Customers/CustomersLanding/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { transformTableStateToQuery } from '@/utils'; export const transformCustomersStateToQuery = (tableState) => { diff --git a/src/containers/Customers/CustomersLanding/withCustomers.tsx b/src/containers/Customers/CustomersLanding/withCustomers.tsx index a2413824f..ca4d89342 100644 --- a/src/containers/Customers/CustomersLanding/withCustomers.tsx +++ b/src/containers/Customers/CustomersLanding/withCustomers.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getCustomersTableStateFactory, diff --git a/src/containers/Customers/CustomersLanding/withCustomersActions.tsx b/src/containers/Customers/CustomersLanding/withCustomersActions.tsx index 477875a71..9ffaf0385 100644 --- a/src/containers/Customers/CustomersLanding/withCustomersActions.tsx +++ b/src/containers/Customers/CustomersLanding/withCustomersActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { setCustomersTableState, diff --git a/src/containers/Customers/CustomersUniversalSearch.tsx b/src/containers/Customers/CustomersUniversalSearch.tsx index 72f44564c..a1574564d 100644 --- a/src/containers/Customers/CustomersUniversalSearch.tsx +++ b/src/containers/Customers/CustomersUniversalSearch.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; import { AbilitySubject, CustomerAction } from '@/constants/abilityOption'; diff --git a/src/containers/Customers/utils.tsx b/src/containers/Customers/utils.tsx index 9d04b55bd..f782209ad 100644 --- a/src/containers/Customers/utils.tsx +++ b/src/containers/Customers/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent } from '@blueprintjs/core'; diff --git a/src/containers/Customers/withCustomerDetail.tsx b/src/containers/Customers/withCustomerDetail.tsx index a8b19869e..23a30d93b 100644 --- a/src/containers/Customers/withCustomerDetail.tsx +++ b/src/containers/Customers/withCustomerDetail.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getCustomerById } from '@/store/customers/customers.reducer'; diff --git a/src/containers/Dashboard/Sidebar/Sidebar.tsx b/src/containers/Dashboard/Sidebar/Sidebar.tsx index f497fd311..c9fa98b85 100644 --- a/src/containers/Dashboard/Sidebar/Sidebar.tsx +++ b/src/containers/Dashboard/Sidebar/Sidebar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { SidebarContainer } from './SidebarContainer'; diff --git a/src/containers/Dashboard/Sidebar/SidebarContainer.tsx b/src/containers/Dashboard/Sidebar/SidebarContainer.tsx index 18dc64022..4cf727594 100644 --- a/src/containers/Dashboard/Sidebar/SidebarContainer.tsx +++ b/src/containers/Dashboard/Sidebar/SidebarContainer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect } from 'react'; import { Scrollbar } from 'react-scrollbars-custom'; import classNames from 'classnames'; diff --git a/src/containers/Dashboard/Sidebar/SidebarHead.tsx b/src/containers/Dashboard/Sidebar/SidebarHead.tsx index e39bb7813..0f4f6d523 100644 --- a/src/containers/Dashboard/Sidebar/SidebarHead.tsx +++ b/src/containers/Dashboard/Sidebar/SidebarHead.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, Popover, Menu, Position } from '@blueprintjs/core'; diff --git a/src/containers/Dashboard/Sidebar/SidebarMenu.tsx b/src/containers/Dashboard/Sidebar/SidebarMenu.tsx index eee7c9f73..ebdeb411e 100644 --- a/src/containers/Dashboard/Sidebar/SidebarMenu.tsx +++ b/src/containers/Dashboard/Sidebar/SidebarMenu.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Menu } from '@blueprintjs/core'; import * as R from 'ramda'; diff --git a/src/containers/Dashboard/Sidebar/hooks.tsx b/src/containers/Dashboard/Sidebar/hooks.tsx index c1fc853a1..fbfd56e9b 100644 --- a/src/containers/Dashboard/Sidebar/hooks.tsx +++ b/src/containers/Dashboard/Sidebar/hooks.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import _, { isEmpty, includes } from 'lodash'; import React from 'react'; import * as R from 'ramda'; diff --git a/src/containers/Dashboard/Sidebar/interfaces.ts b/src/containers/Dashboard/Sidebar/interfaces.ts index 76e6a75b1..c5600d02d 100644 --- a/src/containers/Dashboard/Sidebar/interfaces.ts +++ b/src/containers/Dashboard/Sidebar/interfaces.ts @@ -1,3 +1,4 @@ +// @ts-nocheck export enum ISidebarMenuItemType { Label = 'label', Link = 'link', diff --git a/src/containers/Dashboard/Sidebar/withDashboardSidebar.tsx b/src/containers/Dashboard/Sidebar/withDashboardSidebar.tsx index c775a164e..67fe30bd4 100644 --- a/src/containers/Dashboard/Sidebar/withDashboardSidebar.tsx +++ b/src/containers/Dashboard/Sidebar/withDashboardSidebar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; diff --git a/src/containers/Dashboard/Sidebar/withDashboardSidebarActions.tsx b/src/containers/Dashboard/Sidebar/withDashboardSidebarActions.tsx index 4eca84419..5a8431d8d 100644 --- a/src/containers/Dashboard/Sidebar/withDashboardSidebarActions.tsx +++ b/src/containers/Dashboard/Sidebar/withDashboardSidebarActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { closeSidebarSubmenu, diff --git a/src/containers/Dashboard/SidebarOverlay/SidebarOverlay.tsx b/src/containers/Dashboard/SidebarOverlay/SidebarOverlay.tsx index dc14e63f9..a748a518a 100644 --- a/src/containers/Dashboard/SidebarOverlay/SidebarOverlay.tsx +++ b/src/containers/Dashboard/SidebarOverlay/SidebarOverlay.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck //@ts-nocheck import React from 'react'; import { Overlay, OverlayProps } from '@blueprintjs/core'; diff --git a/src/containers/Dashboard/SidebarOverlay/SidebarOverlayContainer.tsx b/src/containers/Dashboard/SidebarOverlay/SidebarOverlayContainer.tsx index c44c88d7b..96dbcb04c 100644 --- a/src/containers/Dashboard/SidebarOverlay/SidebarOverlayContainer.tsx +++ b/src/containers/Dashboard/SidebarOverlay/SidebarOverlayContainer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Scrollbar } from 'react-scrollbars-custom'; diff --git a/src/containers/Dashboard/SidebarOverlay/index.ts b/src/containers/Dashboard/SidebarOverlay/index.ts index 7900f6d30..36262a3b8 100644 --- a/src/containers/Dashboard/SidebarOverlay/index.ts +++ b/src/containers/Dashboard/SidebarOverlay/index.ts @@ -1,3 +1,4 @@ +// @ts-nocheck export * from './SidebarOverlay'; export * from './SidebarOverlayContainer'; export * from './SidebarOverlayBinded' \ No newline at end of file diff --git a/src/containers/Dashboard/withDashboard.tsx b/src/containers/Dashboard/withDashboard.tsx index d3e885adc..599ea7d80 100644 --- a/src/containers/Dashboard/withDashboard.tsx +++ b/src/containers/Dashboard/withDashboard.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; diff --git a/src/containers/Dashboard/withDashboardActions.tsx b/src/containers/Dashboard/withDashboardActions.tsx index 6836a43f7..f5b87ccbe 100644 --- a/src/containers/Dashboard/withDashboardActions.tsx +++ b/src/containers/Dashboard/withDashboardActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import t from '@/store/types'; import { diff --git a/src/containers/Dialog/withDialogActions.tsx b/src/containers/Dialog/withDialogActions.tsx index f6fa56b9e..92017cddc 100644 --- a/src/containers/Dialog/withDialogActions.tsx +++ b/src/containers/Dialog/withDialogActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import t from '@/store/types'; diff --git a/src/containers/Dialogs/AccountDialog/AccountDialogContent.tsx b/src/containers/Dialogs/AccountDialog/AccountDialogContent.tsx index cf373474e..a8500b4bf 100644 --- a/src/containers/Dialogs/AccountDialog/AccountDialogContent.tsx +++ b/src/containers/Dialogs/AccountDialog/AccountDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { AccountDialogProvider } from './AccountDialogProvider'; import AccountDialogForm from './AccountDialogForm'; diff --git a/src/containers/Dialogs/AccountDialog/AccountDialogForm.tsx b/src/containers/Dialogs/AccountDialog/AccountDialogForm.tsx index 26d045e58..82c8ad6a6 100644 --- a/src/containers/Dialogs/AccountDialog/AccountDialogForm.tsx +++ b/src/containers/Dialogs/AccountDialog/AccountDialogForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import intl from 'react-intl-universal'; import { Intent } from '@blueprintjs/core'; diff --git a/src/containers/Dialogs/AccountDialog/AccountDialogFormContent.tsx b/src/containers/Dialogs/AccountDialog/AccountDialogFormContent.tsx index 96f39831d..c5cdbc4d1 100644 --- a/src/containers/Dialogs/AccountDialog/AccountDialogFormContent.tsx +++ b/src/containers/Dialogs/AccountDialog/AccountDialogFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import { Form, FastField, Field, ErrorMessage, useFormikContext } from 'formik'; diff --git a/src/containers/Dialogs/AccountDialog/AccountDialogProvider.tsx b/src/containers/Dialogs/AccountDialog/AccountDialogProvider.tsx index 1dcc3123b..4154fec36 100644 --- a/src/containers/Dialogs/AccountDialog/AccountDialogProvider.tsx +++ b/src/containers/Dialogs/AccountDialog/AccountDialogProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useContext } from 'react'; import { DialogContent } from '@/components'; import { diff --git a/src/containers/Dialogs/AccountDialog/AccountForm.schema.tsx b/src/containers/Dialogs/AccountDialog/AccountForm.schema.tsx index 85d195bbc..01b950403 100644 --- a/src/containers/Dialogs/AccountDialog/AccountForm.schema.tsx +++ b/src/containers/Dialogs/AccountDialog/AccountForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; import { DATATYPES_LENGTH } from '@/constants/dataTypes'; diff --git a/src/containers/Dialogs/AccountDialog/index.tsx b/src/containers/Dialogs/AccountDialog/index.tsx index d1ed1b149..d03e076af 100644 --- a/src/containers/Dialogs/AccountDialog/index.tsx +++ b/src/containers/Dialogs/AccountDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { lazy } from 'react'; import { FormattedMessage as T } from '@/components'; import { Dialog, DialogSuspense } from '@/components'; diff --git a/src/containers/Dialogs/AccountDialog/utils.tsx b/src/containers/Dialogs/AccountDialog/utils.tsx index 8bcab2fff..2a14f3aaa 100644 --- a/src/containers/Dialogs/AccountDialog/utils.tsx +++ b/src/containers/Dialogs/AccountDialog/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; import * as R from 'ramda'; import { isUndefined } from 'lodash'; diff --git a/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostDialogContent.tsx b/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostDialogContent.tsx index 75ddad1c5..497c9a314 100644 --- a/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostDialogContent.tsx +++ b/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { AllocateLandedCostDialogProvider } from './AllocateLandedCostDialogProvider'; import AllocateLandedCostForm from './AllocateLandedCostForm'; diff --git a/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostDialogProvider.tsx b/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostDialogProvider.tsx index 987024ce2..7bdb46617 100644 --- a/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostDialogProvider.tsx +++ b/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostDialogProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { defaultTo, get } from 'lodash'; import { DialogContent } from '@/components'; diff --git a/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostEntriesTable.tsx b/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostEntriesTable.tsx index cbc975057..2c2fa6d3f 100644 --- a/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostEntriesTable.tsx +++ b/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostEntriesTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFloatingActions.tsx b/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFloatingActions.tsx index b794b9af8..a5203e383 100644 --- a/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFloatingActions.tsx +++ b/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { Intent, Button } from '@blueprintjs/core'; diff --git a/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostForm.schema.tsx b/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostForm.schema.tsx index af1df428a..548272077 100644 --- a/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostForm.schema.tsx +++ b/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; diff --git a/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostForm.tsx b/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostForm.tsx index 5fce65d36..cd937f20a 100644 --- a/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostForm.tsx +++ b/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Formik } from 'formik'; diff --git a/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFormBody.tsx b/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFormBody.tsx index 200a53a82..31339a202 100644 --- a/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFormBody.tsx +++ b/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFormBody.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FastField } from 'formik'; import { CLASSES } from '@/constants/classes'; diff --git a/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFormContent.tsx b/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFormContent.tsx index 2e6e50a83..94bf28592 100644 --- a/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFormContent.tsx +++ b/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Form, useFormikContext } from 'formik'; import { FormObserver } from '@/components'; diff --git a/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFormFields.tsx b/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFormFields.tsx index 2cbc0ea59..2b86e02b5 100644 --- a/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFormFields.tsx +++ b/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { FastField, Field, ErrorMessage } from 'formik'; diff --git a/src/containers/Dialogs/AllocateLandedCostDialog/index.tsx b/src/containers/Dialogs/AllocateLandedCostDialog/index.tsx index 146ffe266..5a9edfa81 100644 --- a/src/containers/Dialogs/AllocateLandedCostDialog/index.tsx +++ b/src/containers/Dialogs/AllocateLandedCostDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { lazy } from 'react'; import { FormattedMessage as T, Dialog, DialogSuspense } from '@/components'; import withDialogRedux from '@/components/DialogReduxConnect'; diff --git a/src/containers/Dialogs/AllocateLandedCostDialog/utils.tsx b/src/containers/Dialogs/AllocateLandedCostDialog/utils.tsx index 3ed1f5aef..57288fb7a 100644 --- a/src/containers/Dialogs/AllocateLandedCostDialog/utils.tsx +++ b/src/containers/Dialogs/AllocateLandedCostDialog/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { sumBy, round } from 'lodash'; diff --git a/src/containers/Dialogs/BadDebtDialog/BadDebtDialogContent.tsx b/src/containers/Dialogs/BadDebtDialog/BadDebtDialogContent.tsx index 43af702f9..437098ddc 100644 --- a/src/containers/Dialogs/BadDebtDialog/BadDebtDialogContent.tsx +++ b/src/containers/Dialogs/BadDebtDialog/BadDebtDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import '@/style/pages/BadDebt/BadDebtDialog.scss'; diff --git a/src/containers/Dialogs/BadDebtDialog/BadDebtForm.schema.tsx b/src/containers/Dialogs/BadDebtDialog/BadDebtForm.schema.tsx index 20eb8250b..f8d3a03fe 100644 --- a/src/containers/Dialogs/BadDebtDialog/BadDebtForm.schema.tsx +++ b/src/containers/Dialogs/BadDebtDialog/BadDebtForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; import { DATATYPES_LENGTH } from '@/constants/dataTypes'; diff --git a/src/containers/Dialogs/BadDebtDialog/BadDebtForm.tsx b/src/containers/Dialogs/BadDebtDialog/BadDebtForm.tsx index 72ce99ed3..bd5211951 100644 --- a/src/containers/Dialogs/BadDebtDialog/BadDebtForm.tsx +++ b/src/containers/Dialogs/BadDebtDialog/BadDebtForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; diff --git a/src/containers/Dialogs/BadDebtDialog/BadDebtFormContent.tsx b/src/containers/Dialogs/BadDebtDialog/BadDebtFormContent.tsx index 568c04a8c..f7d405405 100644 --- a/src/containers/Dialogs/BadDebtDialog/BadDebtFormContent.tsx +++ b/src/containers/Dialogs/BadDebtDialog/BadDebtFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Form } from 'formik'; diff --git a/src/containers/Dialogs/BadDebtDialog/BadDebtFormFields.tsx b/src/containers/Dialogs/BadDebtDialog/BadDebtFormFields.tsx index 2afc96a03..7db51717b 100644 --- a/src/containers/Dialogs/BadDebtDialog/BadDebtFormFields.tsx +++ b/src/containers/Dialogs/BadDebtDialog/BadDebtFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FastField, ErrorMessage } from 'formik'; import { FormattedMessage as T } from '@/components'; diff --git a/src/containers/Dialogs/BadDebtDialog/BadDebtFormFloatingActions.tsx b/src/containers/Dialogs/BadDebtDialog/BadDebtFormFloatingActions.tsx index 82da35a40..0df21d278 100644 --- a/src/containers/Dialogs/BadDebtDialog/BadDebtFormFloatingActions.tsx +++ b/src/containers/Dialogs/BadDebtDialog/BadDebtFormFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, Button, Classes } from '@blueprintjs/core'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Dialogs/BadDebtDialog/BadDebtFormProvider.tsx b/src/containers/Dialogs/BadDebtDialog/BadDebtFormProvider.tsx index 8b255e484..d84af2874 100644 --- a/src/containers/Dialogs/BadDebtDialog/BadDebtFormProvider.tsx +++ b/src/containers/Dialogs/BadDebtDialog/BadDebtFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DialogContent } from '@/components'; diff --git a/src/containers/Dialogs/BadDebtDialog/index.tsx b/src/containers/Dialogs/BadDebtDialog/index.tsx index c41485e81..690e7b2e5 100644 --- a/src/containers/Dialogs/BadDebtDialog/index.tsx +++ b/src/containers/Dialogs/BadDebtDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Dialogs/BadDebtDialog/utils.tsx b/src/containers/Dialogs/BadDebtDialog/utils.tsx index 731610a1a..c1aba1148 100644 --- a/src/containers/Dialogs/BadDebtDialog/utils.tsx +++ b/src/containers/Dialogs/BadDebtDialog/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent } from '@blueprintjs/core'; diff --git a/src/containers/Dialogs/BillNumberDialog/BillNumberDialogContent.tsx b/src/containers/Dialogs/BillNumberDialog/BillNumberDialogContent.tsx index b365128e8..7c97cadeb 100644 --- a/src/containers/Dialogs/BillNumberDialog/BillNumberDialogContent.tsx +++ b/src/containers/Dialogs/BillNumberDialog/BillNumberDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DialogContent } from '@/components'; import { useQuery, queryCache } from 'react-query'; diff --git a/src/containers/Dialogs/BillNumberDialog/index.tsx b/src/containers/Dialogs/BillNumberDialog/index.tsx index de2454b6c..3e0fb6fcd 100644 --- a/src/containers/Dialogs/BillNumberDialog/index.tsx +++ b/src/containers/Dialogs/BillNumberDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { lazy } from 'react'; import { FormattedMessage as T } from '@/components'; import { Dialog, DialogSuspense } from '@/components'; diff --git a/src/containers/Dialogs/BranchActivateDialog/BranchActivateDialogContent.tsx b/src/containers/Dialogs/BranchActivateDialog/BranchActivateDialogContent.tsx index 31c1f8a86..c82dcb0cf 100644 --- a/src/containers/Dialogs/BranchActivateDialog/BranchActivateDialogContent.tsx +++ b/src/containers/Dialogs/BranchActivateDialog/BranchActivateDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import BranchActivateForm from './BranchActivateForm'; diff --git a/src/containers/Dialogs/BranchActivateDialog/BranchActivateForm.tsx b/src/containers/Dialogs/BranchActivateDialog/BranchActivateForm.tsx index 087d96aea..660528320 100644 --- a/src/containers/Dialogs/BranchActivateDialog/BranchActivateForm.tsx +++ b/src/containers/Dialogs/BranchActivateDialog/BranchActivateForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; diff --git a/src/containers/Dialogs/BranchActivateDialog/BranchActivateFormContent.tsx b/src/containers/Dialogs/BranchActivateDialog/BranchActivateFormContent.tsx index c588f83bf..1315d6caa 100644 --- a/src/containers/Dialogs/BranchActivateDialog/BranchActivateFormContent.tsx +++ b/src/containers/Dialogs/BranchActivateDialog/BranchActivateFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Form } from 'formik'; diff --git a/src/containers/Dialogs/BranchActivateDialog/BranchActivateFormFloatingActions.tsx b/src/containers/Dialogs/BranchActivateDialog/BranchActivateFormFloatingActions.tsx index 76faa3330..05232dac1 100644 --- a/src/containers/Dialogs/BranchActivateDialog/BranchActivateFormFloatingActions.tsx +++ b/src/containers/Dialogs/BranchActivateDialog/BranchActivateFormFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, Button, Classes } from '@blueprintjs/core'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Dialogs/BranchActivateDialog/BranchActivateFormProvider.tsx b/src/containers/Dialogs/BranchActivateDialog/BranchActivateFormProvider.tsx index 4031ee815..785ac977f 100644 --- a/src/containers/Dialogs/BranchActivateDialog/BranchActivateFormProvider.tsx +++ b/src/containers/Dialogs/BranchActivateDialog/BranchActivateFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DialogContent } from '@/components'; diff --git a/src/containers/Dialogs/BranchActivateDialog/index.tsx b/src/containers/Dialogs/BranchActivateDialog/index.tsx index 8795f8161..440fbac62 100644 --- a/src/containers/Dialogs/BranchActivateDialog/index.tsx +++ b/src/containers/Dialogs/BranchActivateDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; import withDialogRedux from '@/components/DialogReduxConnect'; diff --git a/src/containers/Dialogs/BranchFormDialog/BranchForm.schema.tsx b/src/containers/Dialogs/BranchFormDialog/BranchForm.schema.tsx index a84f718b9..6ce204c30 100644 --- a/src/containers/Dialogs/BranchFormDialog/BranchForm.schema.tsx +++ b/src/containers/Dialogs/BranchFormDialog/BranchForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; import { DATATYPES_LENGTH } from '@/constants/dataTypes'; diff --git a/src/containers/Dialogs/BranchFormDialog/BranchForm.tsx b/src/containers/Dialogs/BranchFormDialog/BranchForm.tsx index a28df16ed..4674683cb 100644 --- a/src/containers/Dialogs/BranchFormDialog/BranchForm.tsx +++ b/src/containers/Dialogs/BranchFormDialog/BranchForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; diff --git a/src/containers/Dialogs/BranchFormDialog/BranchFormContent.tsx b/src/containers/Dialogs/BranchFormDialog/BranchFormContent.tsx index e47e5706e..79fee9fb4 100644 --- a/src/containers/Dialogs/BranchFormDialog/BranchFormContent.tsx +++ b/src/containers/Dialogs/BranchFormDialog/BranchFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Form } from 'formik'; diff --git a/src/containers/Dialogs/BranchFormDialog/BranchFormDialogContent.tsx b/src/containers/Dialogs/BranchFormDialog/BranchFormDialogContent.tsx index 18438f948..6746d694b 100644 --- a/src/containers/Dialogs/BranchFormDialog/BranchFormDialogContent.tsx +++ b/src/containers/Dialogs/BranchFormDialog/BranchFormDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import '@/style/pages/Branches/BranchFormDialog.scss'; diff --git a/src/containers/Dialogs/BranchFormDialog/BranchFormFields.tsx b/src/containers/Dialogs/BranchFormDialog/BranchFormFields.tsx index 2e7325539..eea427e5c 100644 --- a/src/containers/Dialogs/BranchFormDialog/BranchFormFields.tsx +++ b/src/containers/Dialogs/BranchFormDialog/BranchFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Dialogs/BranchFormDialog/BranchFormFloatingActions.tsx b/src/containers/Dialogs/BranchFormDialog/BranchFormFloatingActions.tsx index 67a06f499..a0f111ca9 100644 --- a/src/containers/Dialogs/BranchFormDialog/BranchFormFloatingActions.tsx +++ b/src/containers/Dialogs/BranchFormDialog/BranchFormFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, Button, Classes } from '@blueprintjs/core'; diff --git a/src/containers/Dialogs/BranchFormDialog/BranchFormProvider.tsx b/src/containers/Dialogs/BranchFormDialog/BranchFormProvider.tsx index 5e04d640a..b5ff1a3ea 100644 --- a/src/containers/Dialogs/BranchFormDialog/BranchFormProvider.tsx +++ b/src/containers/Dialogs/BranchFormDialog/BranchFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DialogContent } from '@/components'; import { useCreateBranch, useEditBranch, useBranch } from '@/hooks/query'; diff --git a/src/containers/Dialogs/BranchFormDialog/index.tsx b/src/containers/Dialogs/BranchFormDialog/index.tsx index 9ca12026f..06a8dab10 100644 --- a/src/containers/Dialogs/BranchFormDialog/index.tsx +++ b/src/containers/Dialogs/BranchFormDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; import withDialogRedux from '@/components/DialogReduxConnect'; diff --git a/src/containers/Dialogs/BranchFormDialog/utils.tsx b/src/containers/Dialogs/BranchFormDialog/utils.tsx index eb0e5d0ea..ee68e0e98 100644 --- a/src/containers/Dialogs/BranchFormDialog/utils.tsx +++ b/src/containers/Dialogs/BranchFormDialog/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; /** diff --git a/src/containers/Dialogs/ContactDuplicateDialog/ContactDuplicateDialogContent.tsx b/src/containers/Dialogs/ContactDuplicateDialog/ContactDuplicateDialogContent.tsx index 886c8db36..fa4f64840 100644 --- a/src/containers/Dialogs/ContactDuplicateDialog/ContactDuplicateDialogContent.tsx +++ b/src/containers/Dialogs/ContactDuplicateDialog/ContactDuplicateDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import ContactDuplicateForm from './ContactDuplicateForm'; diff --git a/src/containers/Dialogs/ContactDuplicateDialog/ContactDuplicateForm.tsx b/src/containers/Dialogs/ContactDuplicateDialog/ContactDuplicateForm.tsx index 2c784fcdc..534450c08 100644 --- a/src/containers/Dialogs/ContactDuplicateDialog/ContactDuplicateForm.tsx +++ b/src/containers/Dialogs/ContactDuplicateDialog/ContactDuplicateForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import * as Yup from 'yup'; diff --git a/src/containers/Dialogs/ContactDuplicateDialog/ContactDuplicateProvider.tsx b/src/containers/Dialogs/ContactDuplicateDialog/ContactDuplicateProvider.tsx index 70472bb92..58bc03731 100644 --- a/src/containers/Dialogs/ContactDuplicateDialog/ContactDuplicateProvider.tsx +++ b/src/containers/Dialogs/ContactDuplicateDialog/ContactDuplicateProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DialogContent } from '@/components'; diff --git a/src/containers/Dialogs/ContactDuplicateDialog/index.tsx b/src/containers/Dialogs/ContactDuplicateDialog/index.tsx index ad5a92850..1f5d51ae2 100644 --- a/src/containers/Dialogs/ContactDuplicateDialog/index.tsx +++ b/src/containers/Dialogs/ContactDuplicateDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { lazy } from 'react'; import { FormattedMessage as T } from '@/components'; import { Dialog, DialogSuspense } from '@/components'; diff --git a/src/containers/Dialogs/CreditNoteNumberDialog/CreditNoteNumberDialogContent.tsx b/src/containers/Dialogs/CreditNoteNumberDialog/CreditNoteNumberDialogContent.tsx index 4778fdbb1..b8639351d 100644 --- a/src/containers/Dialogs/CreditNoteNumberDialog/CreditNoteNumberDialogContent.tsx +++ b/src/containers/Dialogs/CreditNoteNumberDialog/CreditNoteNumberDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { useSaveSettings } from '@/hooks/query'; diff --git a/src/containers/Dialogs/CreditNoteNumberDialog/CreditNoteNumberDialogProvider.tsx b/src/containers/Dialogs/CreditNoteNumberDialog/CreditNoteNumberDialogProvider.tsx index 592d3360f..400989514 100644 --- a/src/containers/Dialogs/CreditNoteNumberDialog/CreditNoteNumberDialogProvider.tsx +++ b/src/containers/Dialogs/CreditNoteNumberDialog/CreditNoteNumberDialogProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DialogContent } from '@/components'; import { useSettingsCreditNotes } from '@/hooks/query'; diff --git a/src/containers/Dialogs/CreditNoteNumberDialog/index.tsx b/src/containers/Dialogs/CreditNoteNumberDialog/index.tsx index 7ab2456e3..bad3cb874 100644 --- a/src/containers/Dialogs/CreditNoteNumberDialog/index.tsx +++ b/src/containers/Dialogs/CreditNoteNumberDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; import withDialogRedux from '@/components/DialogReduxConnect'; diff --git a/src/containers/Dialogs/CreditNotePdfPreviewDialog/CreditNotePdfPreviewDialogContent.tsx b/src/containers/Dialogs/CreditNotePdfPreviewDialog/CreditNotePdfPreviewDialogContent.tsx index fc73eadb7..067853aeb 100644 --- a/src/containers/Dialogs/CreditNotePdfPreviewDialog/CreditNotePdfPreviewDialogContent.tsx +++ b/src/containers/Dialogs/CreditNotePdfPreviewDialog/CreditNotePdfPreviewDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { AnchorButton } from '@blueprintjs/core'; diff --git a/src/containers/Dialogs/CreditNotePdfPreviewDialog/index.tsx b/src/containers/Dialogs/CreditNotePdfPreviewDialog/index.tsx index 374faf9fe..5ae38d4a4 100644 --- a/src/containers/Dialogs/CreditNotePdfPreviewDialog/index.tsx +++ b/src/containers/Dialogs/CreditNotePdfPreviewDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; diff --git a/src/containers/Dialogs/CurrencyFormDialog/CurrencyForm.schema.tsx b/src/containers/Dialogs/CurrencyFormDialog/CurrencyForm.schema.tsx index 1cc225364..c74835927 100644 --- a/src/containers/Dialogs/CurrencyFormDialog/CurrencyForm.schema.tsx +++ b/src/containers/Dialogs/CurrencyFormDialog/CurrencyForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; import { DATATYPES_LENGTH } from '@/constants/dataTypes'; diff --git a/src/containers/Dialogs/CurrencyFormDialog/CurrencyForm.tsx b/src/containers/Dialogs/CurrencyFormDialog/CurrencyForm.tsx index fa3c82c9e..ff2dbd898 100644 --- a/src/containers/Dialogs/CurrencyFormDialog/CurrencyForm.tsx +++ b/src/containers/Dialogs/CurrencyFormDialog/CurrencyForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import intl from 'react-intl-universal'; import { Intent } from '@blueprintjs/core'; diff --git a/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormContent.tsx b/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormContent.tsx index 8b70d2add..709f56f6c 100644 --- a/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormContent.tsx +++ b/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Form } from 'formik'; diff --git a/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormDialogContent.tsx b/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormDialogContent.tsx index 21aebaa0a..4092f3d31 100644 --- a/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormDialogContent.tsx +++ b/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { CurrencyFormProvider } from './CurrencyFormProvider'; diff --git a/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormFields.tsx b/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormFields.tsx index 44c763e56..7929f2037 100644 --- a/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormFields.tsx +++ b/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Classes, FormGroup, InputGroup } from '@blueprintjs/core'; import { FastField } from 'formik'; diff --git a/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormFooter.tsx b/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormFooter.tsx index 3c0a35c5a..620817b78 100644 --- a/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormFooter.tsx +++ b/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; import { useCurrencyFormContext } from './CurrencyFormProvider'; diff --git a/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormProvider.tsx b/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormProvider.tsx index 1f8184c48..04143a979 100644 --- a/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormProvider.tsx +++ b/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext } from 'react'; import { useEditCurrency, useCreateCurrency } from '@/hooks/query'; import { DialogContent } from '@/components'; diff --git a/src/containers/Dialogs/CurrencyFormDialog/index.tsx b/src/containers/Dialogs/CurrencyFormDialog/index.tsx index 36878ba42..f1c0e85f0 100644 --- a/src/containers/Dialogs/CurrencyFormDialog/index.tsx +++ b/src/containers/Dialogs/CurrencyFormDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { lazy } from 'react'; import { FormattedMessage as T } from '@/components'; import { Dialog, DialogSuspense } from '@/components'; diff --git a/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceDialogContent.tsx b/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceDialogContent.tsx index f222936d1..410cc3c61 100644 --- a/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceDialogContent.tsx +++ b/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import '@/style/pages/CustomerOpeningBalance/CustomerOpeningBalance.scss'; diff --git a/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceFields.tsx b/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceFields.tsx index c07e3ee8b..d057d35e0 100644 --- a/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceFields.tsx +++ b/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Classes, Position, FormGroup, ControlGroup } from '@blueprintjs/core'; import { DateInput } from '@blueprintjs/datetime'; diff --git a/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceForm.schema.tsx b/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceForm.schema.tsx index a2f608eb0..88212d93f 100644 --- a/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceForm.schema.tsx +++ b/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; const Schema = Yup.object().shape({ diff --git a/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceForm.tsx b/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceForm.tsx index 1f11e6643..0d7c90069 100644 --- a/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceForm.tsx +++ b/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import intl from 'react-intl-universal'; diff --git a/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceFormContent.tsx b/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceFormContent.tsx index fb1318af6..764f3fcaa 100644 --- a/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceFormContent.tsx +++ b/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Form } from 'formik'; diff --git a/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceFormFloatingActions.tsx b/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceFormFloatingActions.tsx index 67b444911..adb94ae44 100644 --- a/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceFormFloatingActions.tsx +++ b/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceFormFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, Button, Classes } from '@blueprintjs/core'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceFormProvider.tsx b/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceFormProvider.tsx index 5f1bc0aa5..4dbc47b9b 100644 --- a/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceFormProvider.tsx +++ b/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DialogContent } from '@/components'; import { diff --git a/src/containers/Dialogs/CustomerOpeningBalanceDialog/index.tsx b/src/containers/Dialogs/CustomerOpeningBalanceDialog/index.tsx index 68f90f619..201d2e3bb 100644 --- a/src/containers/Dialogs/CustomerOpeningBalanceDialog/index.tsx +++ b/src/containers/Dialogs/CustomerOpeningBalanceDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FormattedMessage as T } from '@/components'; diff --git a/src/containers/Dialogs/CustomerOpeningBalanceDialog/utils.tsx b/src/containers/Dialogs/CustomerOpeningBalanceDialog/utils.tsx index c0177edef..b912d5bd7 100644 --- a/src/containers/Dialogs/CustomerOpeningBalanceDialog/utils.tsx +++ b/src/containers/Dialogs/CustomerOpeningBalanceDialog/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; import { first, pick } from 'lodash'; diff --git a/src/containers/Dialogs/EstimateNumberDialog/EstimateNumberDialogContent.tsx b/src/containers/Dialogs/EstimateNumberDialog/EstimateNumberDialogContent.tsx index 523237cd4..d8debf7c0 100644 --- a/src/containers/Dialogs/EstimateNumberDialog/EstimateNumberDialogContent.tsx +++ b/src/containers/Dialogs/EstimateNumberDialog/EstimateNumberDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import intl from 'react-intl-universal'; diff --git a/src/containers/Dialogs/EstimateNumberDialog/index.tsx b/src/containers/Dialogs/EstimateNumberDialog/index.tsx index 34def28c3..64d87b5ee 100644 --- a/src/containers/Dialogs/EstimateNumberDialog/index.tsx +++ b/src/containers/Dialogs/EstimateNumberDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { lazy } from 'react'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; import withDialogRedux from '@/components/DialogReduxConnect'; diff --git a/src/containers/Dialogs/EstimatePdfPreviewDialog/EstimatePdfPreviewDialogContent.tsx b/src/containers/Dialogs/EstimatePdfPreviewDialog/EstimatePdfPreviewDialogContent.tsx index 5a2ddbae5..50aa219dd 100644 --- a/src/containers/Dialogs/EstimatePdfPreviewDialog/EstimatePdfPreviewDialogContent.tsx +++ b/src/containers/Dialogs/EstimatePdfPreviewDialog/EstimatePdfPreviewDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { AnchorButton } from '@blueprintjs/core'; diff --git a/src/containers/Dialogs/EstimatePdfPreviewDialog/index.tsx b/src/containers/Dialogs/EstimatePdfPreviewDialog/index.tsx index 48bf61986..d952f7dcd 100644 --- a/src/containers/Dialogs/EstimatePdfPreviewDialog/index.tsx +++ b/src/containers/Dialogs/EstimatePdfPreviewDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; diff --git a/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateForm.schema.tsx b/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateForm.schema.tsx index 3d6631bc3..7ff0ff63d 100644 --- a/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateForm.schema.tsx +++ b/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; import { DATATYPES_LENGTH } from '@/constants/dataTypes'; diff --git a/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateForm.tsx b/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateForm.tsx index da9109eed..b0cb40518 100644 --- a/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateForm.tsx +++ b/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import intl from 'react-intl-universal'; import moment from 'moment'; diff --git a/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormContent.tsx b/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormContent.tsx index 3557ad92b..07ecc1ebc 100644 --- a/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormContent.tsx +++ b/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Form } from 'formik'; import ExchangeRateFormFields from './ExchangeRateFormFields'; diff --git a/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormDialogContent.tsx b/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormDialogContent.tsx index b0743b98b..2cad6e0c3 100644 --- a/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormDialogContent.tsx +++ b/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import ExchangeRateForm from './ExchangeRateForm'; diff --git a/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormFields.tsx b/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormFields.tsx index 1ff5c5d19..58c3eb262 100644 --- a/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormFields.tsx +++ b/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Classes, FormGroup, InputGroup, Position } from '@blueprintjs/core'; import { FastField } from 'formik'; diff --git a/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormFooter.tsx b/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormFooter.tsx index 969b31daf..ef66f7674 100644 --- a/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormFooter.tsx +++ b/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormProvider.tsx b/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormProvider.tsx index 34d3a02c6..90bdf8e96 100644 --- a/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormProvider.tsx +++ b/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useContext } from 'react'; import { useCreateExchangeRate, diff --git a/src/containers/Dialogs/ExchangeRateFormDialog/index.tsx b/src/containers/Dialogs/ExchangeRateFormDialog/index.tsx index 6f9d47212..3bbc71954 100644 --- a/src/containers/Dialogs/ExchangeRateFormDialog/index.tsx +++ b/src/containers/Dialogs/ExchangeRateFormDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { lazy } from 'react'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; import withDialogRedux from '@/components/DialogReduxConnect'; diff --git a/src/containers/Dialogs/ExportDialog.tsx b/src/containers/Dialogs/ExportDialog.tsx deleted file mode 100644 index e69de29bb..000000000 diff --git a/src/containers/Dialogs/ImportDialog.tsx b/src/containers/Dialogs/ImportDialog.tsx deleted file mode 100644 index e69de29bb..000000000 diff --git a/src/containers/Dialogs/InventoryAdjustmentFormDialog/DecrementAdjustmentFields.tsx b/src/containers/Dialogs/InventoryAdjustmentFormDialog/DecrementAdjustmentFields.tsx index a91f17a96..43c085086 100644 --- a/src/containers/Dialogs/InventoryAdjustmentFormDialog/DecrementAdjustmentFields.tsx +++ b/src/containers/Dialogs/InventoryAdjustmentFormDialog/DecrementAdjustmentFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Field, ErrorMessage, FastField } from 'formik'; import { FormGroup, InputGroup } from '@blueprintjs/core'; diff --git a/src/containers/Dialogs/InventoryAdjustmentFormDialog/IncrementAdjustmentFields.tsx b/src/containers/Dialogs/InventoryAdjustmentFormDialog/IncrementAdjustmentFields.tsx index 43718997c..1373f2f7b 100644 --- a/src/containers/Dialogs/InventoryAdjustmentFormDialog/IncrementAdjustmentFields.tsx +++ b/src/containers/Dialogs/InventoryAdjustmentFormDialog/IncrementAdjustmentFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Field, FastField, ErrorMessage } from 'formik'; import { FormGroup, InputGroup } from '@blueprintjs/core'; diff --git a/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFloatingActions.tsx b/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFloatingActions.tsx index be5361717..f20f82494 100644 --- a/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFloatingActions.tsx +++ b/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, Button, Classes } from '@blueprintjs/core'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentForm.schema.tsx b/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentForm.schema.tsx index b93853e0e..b7a9cf913 100644 --- a/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentForm.schema.tsx +++ b/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; import { DATATYPES_LENGTH } from '@/constants/dataTypes'; diff --git a/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentForm.tsx b/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentForm.tsx index 8abca16ff..37fa86e69 100644 --- a/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentForm.tsx +++ b/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import moment from 'moment'; diff --git a/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFormContent.tsx b/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFormContent.tsx index 8d4e39c51..b3c5ca8d2 100644 --- a/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFormContent.tsx +++ b/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Form } from 'formik'; import InventoryAdjustmentFormDialogFields from './InventoryAdjustmentFormDialogFields'; diff --git a/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFormDialogContent.tsx b/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFormDialogContent.tsx index 6df1b222a..a04c98885 100644 --- a/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFormDialogContent.tsx +++ b/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFormDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import '@/style/pages/Items/ItemAdjustmentDialog.scss'; diff --git a/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFormDialogFields.tsx b/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFormDialogFields.tsx index 4075ea02a..e745d3d59 100644 --- a/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFormDialogFields.tsx +++ b/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFormDialogFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFormProvider.tsx b/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFormProvider.tsx index 0928742dd..03c399b35 100644 --- a/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFormProvider.tsx +++ b/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useState, createContext } from 'react'; import { DialogContent } from '@/components'; import { Features } from '@/constants'; diff --git a/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentQuantityFields.tsx b/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentQuantityFields.tsx index d1c116064..650b006b0 100644 --- a/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentQuantityFields.tsx +++ b/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentQuantityFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; import { Choose, If } from '@/components'; diff --git a/src/containers/Dialogs/InventoryAdjustmentFormDialog/index.tsx b/src/containers/Dialogs/InventoryAdjustmentFormDialog/index.tsx index 6f193cc56..e783499bd 100644 --- a/src/containers/Dialogs/InventoryAdjustmentFormDialog/index.tsx +++ b/src/containers/Dialogs/InventoryAdjustmentFormDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { lazy } from 'react'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; import withDialogRedux from '@/components/DialogReduxConnect'; diff --git a/src/containers/Dialogs/InventoryAdjustmentFormDialog/utils.tsx b/src/containers/Dialogs/InventoryAdjustmentFormDialog/utils.tsx index d6b659376..0e6d7799f 100644 --- a/src/containers/Dialogs/InventoryAdjustmentFormDialog/utils.tsx +++ b/src/containers/Dialogs/InventoryAdjustmentFormDialog/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; import { useInventoryAdjContext } from './InventoryAdjustmentFormProvider'; diff --git a/src/containers/Dialogs/InviteUserDialog/InviteUserDialog.schema.tsx b/src/containers/Dialogs/InviteUserDialog/InviteUserDialog.schema.tsx index 057f75e25..696cf0ebe 100644 --- a/src/containers/Dialogs/InviteUserDialog/InviteUserDialog.schema.tsx +++ b/src/containers/Dialogs/InviteUserDialog/InviteUserDialog.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; diff --git a/src/containers/Dialogs/InviteUserDialog/InviteUserDialogContent.tsx b/src/containers/Dialogs/InviteUserDialog/InviteUserDialogContent.tsx index a6a76a128..173cdfb7b 100644 --- a/src/containers/Dialogs/InviteUserDialog/InviteUserDialogContent.tsx +++ b/src/containers/Dialogs/InviteUserDialog/InviteUserDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import InviteUserForm from './InviteUserForm'; diff --git a/src/containers/Dialogs/InviteUserDialog/InviteUserForm.tsx b/src/containers/Dialogs/InviteUserDialog/InviteUserForm.tsx index 2aa8e3b60..4132d39af 100644 --- a/src/containers/Dialogs/InviteUserDialog/InviteUserForm.tsx +++ b/src/containers/Dialogs/InviteUserDialog/InviteUserForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Formik } from 'formik'; diff --git a/src/containers/Dialogs/InviteUserDialog/InviteUserFormContent.tsx b/src/containers/Dialogs/InviteUserDialog/InviteUserFormContent.tsx index b93da41b5..33bb67de7 100644 --- a/src/containers/Dialogs/InviteUserDialog/InviteUserFormContent.tsx +++ b/src/containers/Dialogs/InviteUserDialog/InviteUserFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FormGroup, InputGroup, Intent, Button } from '@blueprintjs/core'; import { FastField, Form, useFormikContext, ErrorMessage } from 'formik'; diff --git a/src/containers/Dialogs/InviteUserDialog/InviteUserFormProvider.tsx b/src/containers/Dialogs/InviteUserDialog/InviteUserFormProvider.tsx index 107c6555e..1bfedd193 100644 --- a/src/containers/Dialogs/InviteUserDialog/InviteUserFormProvider.tsx +++ b/src/containers/Dialogs/InviteUserDialog/InviteUserFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext } from 'react'; import { useCreateInviteUser, useUsers, useRoles } from '@/hooks/query'; import { DialogContent } from '@/components'; diff --git a/src/containers/Dialogs/InviteUserDialog/index.tsx b/src/containers/Dialogs/InviteUserDialog/index.tsx index 623fd47b5..a3d50291f 100644 --- a/src/containers/Dialogs/InviteUserDialog/index.tsx +++ b/src/containers/Dialogs/InviteUserDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { lazy } from 'react'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; import withDialogRedux from '@/components/DialogReduxConnect'; diff --git a/src/containers/Dialogs/InviteUserDialog/utils.tsx b/src/containers/Dialogs/InviteUserDialog/utils.tsx index b957f731d..1bd30788d 100644 --- a/src/containers/Dialogs/InviteUserDialog/utils.tsx +++ b/src/containers/Dialogs/InviteUserDialog/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; export const transformApiErrors = (errors) => { diff --git a/src/containers/Dialogs/InvoiceNumberDialog/InvoiceNumberDialogContent.tsx b/src/containers/Dialogs/InvoiceNumberDialog/InvoiceNumberDialogContent.tsx index 95c5a3a41..5ab76801c 100644 --- a/src/containers/Dialogs/InvoiceNumberDialog/InvoiceNumberDialogContent.tsx +++ b/src/containers/Dialogs/InvoiceNumberDialog/InvoiceNumberDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { useSaveSettings } from '@/hooks/query'; diff --git a/src/containers/Dialogs/InvoiceNumberDialog/InvoiceNumberDialogProvider.tsx b/src/containers/Dialogs/InvoiceNumberDialog/InvoiceNumberDialogProvider.tsx index 3c6dbeeaf..269b5798a 100644 --- a/src/containers/Dialogs/InvoiceNumberDialog/InvoiceNumberDialogProvider.tsx +++ b/src/containers/Dialogs/InvoiceNumberDialog/InvoiceNumberDialogProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useContext } from 'react'; import { DialogContent } from '@/components'; import { useSettingsInvoices } from '@/hooks/query'; diff --git a/src/containers/Dialogs/InvoiceNumberDialog/index.tsx b/src/containers/Dialogs/InvoiceNumberDialog/index.tsx index 8c6a9a85d..5a7d6bfb2 100644 --- a/src/containers/Dialogs/InvoiceNumberDialog/index.tsx +++ b/src/containers/Dialogs/InvoiceNumberDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { lazy } from 'react'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; import withDialogRedux from '@/components/DialogReduxConnect'; diff --git a/src/containers/Dialogs/InvoicePdfPreviewDialog/InvoicePdfPreviewDialogContent.tsx b/src/containers/Dialogs/InvoicePdfPreviewDialog/InvoicePdfPreviewDialogContent.tsx index e528603ee..c31b643b0 100644 --- a/src/containers/Dialogs/InvoicePdfPreviewDialog/InvoicePdfPreviewDialogContent.tsx +++ b/src/containers/Dialogs/InvoicePdfPreviewDialog/InvoicePdfPreviewDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { AnchorButton } from '@blueprintjs/core'; diff --git a/src/containers/Dialogs/InvoicePdfPreviewDialog/index.tsx b/src/containers/Dialogs/InvoicePdfPreviewDialog/index.tsx index 0eab6abaf..61d608f3f 100644 --- a/src/containers/Dialogs/InvoicePdfPreviewDialog/index.tsx +++ b/src/containers/Dialogs/InvoicePdfPreviewDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { lazy } from 'react'; import classNames from 'classnames'; diff --git a/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryForm.tsx b/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryForm.tsx index e401519dc..17d6b0462 100644 --- a/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryForm.tsx +++ b/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import intl from 'react-intl-universal'; import { Intent } from '@blueprintjs/core'; diff --git a/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryFormContent.tsx b/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryFormContent.tsx index b76e8f1f3..9b23f9f5a 100644 --- a/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryFormContent.tsx +++ b/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Form } from 'formik'; import ItemCategoryFormFields from './ItemCategoryFormFields'; diff --git a/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryFormDialogContent.tsx b/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryFormDialogContent.tsx index 74a06addc..66c74c74f 100644 --- a/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryFormDialogContent.tsx +++ b/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryFormDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { ItemCategoryProvider } from './ItemCategoryProvider'; import ItemCategoryForm from './ItemCategoryForm'; diff --git a/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryFormFields.tsx b/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryFormFields.tsx index 488411cba..87825a8c2 100644 --- a/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryFormFields.tsx +++ b/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Classes, FormGroup, InputGroup, TextArea } from '@blueprintjs/core'; import { FormattedMessage as T, FieldRequiredHint } from '@/components'; diff --git a/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryFormFooter.tsx b/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryFormFooter.tsx index be21c97c5..6b1c4ca03 100644 --- a/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryFormFooter.tsx +++ b/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryFormFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Classes, Button, Intent } from '@blueprintjs/core'; import { FormattedMessage as T } from '@/components'; diff --git a/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryProvider.tsx b/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryProvider.tsx index 330698cad..9d5317117 100644 --- a/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryProvider.tsx +++ b/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext } from 'react'; import { DialogContent } from '@/components'; import { diff --git a/src/containers/Dialogs/ItemCategoryDialog/index.tsx b/src/containers/Dialogs/ItemCategoryDialog/index.tsx index 5f02af0ac..3a8b2ec51 100644 --- a/src/containers/Dialogs/ItemCategoryDialog/index.tsx +++ b/src/containers/Dialogs/ItemCategoryDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { lazy } from 'react'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Dialogs/ItemCategoryDialog/itemCategoryForm.schema.tsx b/src/containers/Dialogs/ItemCategoryDialog/itemCategoryForm.schema.tsx index b729485fe..196f0a804 100644 --- a/src/containers/Dialogs/ItemCategoryDialog/itemCategoryForm.schema.tsx +++ b/src/containers/Dialogs/ItemCategoryDialog/itemCategoryForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; import { DATATYPES_LENGTH } from '@/constants/dataTypes'; diff --git a/src/containers/Dialogs/JournalNumberDialog/JournalNumberDialogContent.tsx b/src/containers/Dialogs/JournalNumberDialog/JournalNumberDialogContent.tsx index 456e16910..8f3049626 100644 --- a/src/containers/Dialogs/JournalNumberDialog/JournalNumberDialogContent.tsx +++ b/src/containers/Dialogs/JournalNumberDialog/JournalNumberDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import intl from 'react-intl-universal'; import { DialogContent } from '@/components'; diff --git a/src/containers/Dialogs/JournalNumberDialog/index.tsx b/src/containers/Dialogs/JournalNumberDialog/index.tsx index 1a1c74a00..9ff848ca0 100644 --- a/src/containers/Dialogs/JournalNumberDialog/index.tsx +++ b/src/containers/Dialogs/JournalNumberDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { lazy } from 'react'; import { FormattedMessage as T } from '@/components'; import { Dialog, DialogSuspense } from '@/components'; diff --git a/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsDialogContent.tsx b/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsDialogContent.tsx index 86c880e4c..fe1f6bce6 100644 --- a/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsDialogContent.tsx +++ b/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { LockingTransactionsFormProvider } from './LockingTransactionsFormProvider'; import LockingTransactionsForm from './LockingTransactionsForm'; diff --git a/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsForm.schema.tsx b/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsForm.schema.tsx index b0719ace4..9f4b2b8a5 100644 --- a/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsForm.schema.tsx +++ b/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; import { DATATYPES_LENGTH } from '@/constants/dataTypes'; diff --git a/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsForm.tsx b/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsForm.tsx index a348eff59..9ed9c15dd 100644 --- a/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsForm.tsx +++ b/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import intl from 'react-intl-universal'; diff --git a/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsFormContent.tsx b/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsFormContent.tsx index c7e46a26c..a14e23727 100644 --- a/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsFormContent.tsx +++ b/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Form } from 'formik'; diff --git a/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsFormFields.tsx b/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsFormFields.tsx index 0855cb978..245b8118a 100644 --- a/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsFormFields.tsx +++ b/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FastField, ErrorMessage } from 'formik'; import { Classes, FormGroup, TextArea, Position } from '@blueprintjs/core'; diff --git a/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsFormFloatingActions.tsx b/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsFormFloatingActions.tsx index 719aed124..207c645fc 100644 --- a/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsFormFloatingActions.tsx +++ b/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsFormFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, Button, Classes } from '@blueprintjs/core'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsFormProvider.tsx b/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsFormProvider.tsx index afae4c11d..6dcd5fdd4 100644 --- a/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsFormProvider.tsx +++ b/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DialogContent } from '@/components'; import { diff --git a/src/containers/Dialogs/LockingTransactionsDialog/index.tsx b/src/containers/Dialogs/LockingTransactionsDialog/index.tsx index 1ea15c9ab..39f2cae7a 100644 --- a/src/containers/Dialogs/LockingTransactionsDialog/index.tsx +++ b/src/containers/Dialogs/LockingTransactionsDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; import withDialogRedux from '@/components/DialogReduxConnect'; diff --git a/src/containers/Dialogs/MoneyInDialog/MoneyInContentFields.tsx b/src/containers/Dialogs/MoneyInDialog/MoneyInContentFields.tsx index 838c173aa..15ebc9f95 100644 --- a/src/containers/Dialogs/MoneyInDialog/MoneyInContentFields.tsx +++ b/src/containers/Dialogs/MoneyInDialog/MoneyInContentFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import OwnerContributionFormFields from './OwnerContribution/OwnerContributionFormFields'; import OtherIncomeFormFields from './OtherIncome/OtherIncomeFormFields'; diff --git a/src/containers/Dialogs/MoneyInDialog/MoneyInDialogContent.tsx b/src/containers/Dialogs/MoneyInDialog/MoneyInDialogContent.tsx index 7eee4f501..1674c4ab7 100644 --- a/src/containers/Dialogs/MoneyInDialog/MoneyInDialogContent.tsx +++ b/src/containers/Dialogs/MoneyInDialog/MoneyInDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { MoneyInDialogProvider } from './MoneyInDialogProvider'; diff --git a/src/containers/Dialogs/MoneyInDialog/MoneyInDialogProvider.tsx b/src/containers/Dialogs/MoneyInDialog/MoneyInDialogProvider.tsx index 6e366891a..3f2551b90 100644 --- a/src/containers/Dialogs/MoneyInDialog/MoneyInDialogProvider.tsx +++ b/src/containers/Dialogs/MoneyInDialog/MoneyInDialogProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DialogContent } from '@/components'; import { Features } from '@/constants'; diff --git a/src/containers/Dialogs/MoneyInDialog/MoneyInFloatingActions.tsx b/src/containers/Dialogs/MoneyInDialog/MoneyInFloatingActions.tsx index 578d8ca64..40297f988 100644 --- a/src/containers/Dialogs/MoneyInDialog/MoneyInFloatingActions.tsx +++ b/src/containers/Dialogs/MoneyInDialog/MoneyInFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, Button, Classes } from '@blueprintjs/core'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Dialogs/MoneyInDialog/MoneyInForm.schema.tsx b/src/containers/Dialogs/MoneyInDialog/MoneyInForm.schema.tsx index 092d6899d..d78483ca1 100644 --- a/src/containers/Dialogs/MoneyInDialog/MoneyInForm.schema.tsx +++ b/src/containers/Dialogs/MoneyInDialog/MoneyInForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; import { DATATYPES_LENGTH } from '@/constants/dataTypes'; diff --git a/src/containers/Dialogs/MoneyInDialog/MoneyInForm.tsx b/src/containers/Dialogs/MoneyInDialog/MoneyInForm.tsx index 91f52628f..e741e8ae5 100644 --- a/src/containers/Dialogs/MoneyInDialog/MoneyInForm.tsx +++ b/src/containers/Dialogs/MoneyInDialog/MoneyInForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import moment from 'moment'; diff --git a/src/containers/Dialogs/MoneyInDialog/MoneyInFormContent.tsx b/src/containers/Dialogs/MoneyInDialog/MoneyInFormContent.tsx index ee9e5b874..d107daafb 100644 --- a/src/containers/Dialogs/MoneyInDialog/MoneyInFormContent.tsx +++ b/src/containers/Dialogs/MoneyInDialog/MoneyInFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Form } from 'formik'; diff --git a/src/containers/Dialogs/MoneyInDialog/MoneyInFormDialog.tsx b/src/containers/Dialogs/MoneyInDialog/MoneyInFormDialog.tsx index 8b3c485ea..3207b2352 100644 --- a/src/containers/Dialogs/MoneyInDialog/MoneyInFormDialog.tsx +++ b/src/containers/Dialogs/MoneyInDialog/MoneyInFormDialog.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Dialogs/MoneyInDialog/MoneyInFormFields.tsx b/src/containers/Dialogs/MoneyInDialog/MoneyInFormFields.tsx index 863609441..cd1e2a46d 100644 --- a/src/containers/Dialogs/MoneyInDialog/MoneyInFormFields.tsx +++ b/src/containers/Dialogs/MoneyInDialog/MoneyInFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; import { Classes } from '@blueprintjs/core'; diff --git a/src/containers/Dialogs/MoneyInDialog/OtherIncome/OtherIncomeFormFields.tsx b/src/containers/Dialogs/MoneyInDialog/OtherIncome/OtherIncomeFormFields.tsx index 0fe4a9038..ce479225b 100644 --- a/src/containers/Dialogs/MoneyInDialog/OtherIncome/OtherIncomeFormFields.tsx +++ b/src/containers/Dialogs/MoneyInDialog/OtherIncome/OtherIncomeFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FastField, Field, ErrorMessage, useFormikContext } from 'formik'; import { diff --git a/src/containers/Dialogs/MoneyInDialog/OwnerContribution/OwnerContributionFormFields.tsx b/src/containers/Dialogs/MoneyInDialog/OwnerContribution/OwnerContributionFormFields.tsx index d49b30d85..e12598955 100644 --- a/src/containers/Dialogs/MoneyInDialog/OwnerContribution/OwnerContributionFormFields.tsx +++ b/src/containers/Dialogs/MoneyInDialog/OwnerContribution/OwnerContributionFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FastField, Field, ErrorMessage, useFormikContext } from 'formik'; import { diff --git a/src/containers/Dialogs/MoneyInDialog/TransactionTypeFields.tsx b/src/containers/Dialogs/MoneyInDialog/TransactionTypeFields.tsx index 05b05074a..127e7bbb3 100644 --- a/src/containers/Dialogs/MoneyInDialog/TransactionTypeFields.tsx +++ b/src/containers/Dialogs/MoneyInDialog/TransactionTypeFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FastField, Field, ErrorMessage } from 'formik'; import { FormGroup } from '@blueprintjs/core'; diff --git a/src/containers/Dialogs/MoneyInDialog/TransferFromAccount/TransferFromAccountFormFields.tsx b/src/containers/Dialogs/MoneyInDialog/TransferFromAccount/TransferFromAccountFormFields.tsx index 4103adcc7..54539bd0c 100644 --- a/src/containers/Dialogs/MoneyInDialog/TransferFromAccount/TransferFromAccountFormFields.tsx +++ b/src/containers/Dialogs/MoneyInDialog/TransferFromAccount/TransferFromAccountFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FastField, Field, ErrorMessage, useFormikContext } from 'formik'; import { DateInput } from '@blueprintjs/datetime'; diff --git a/src/containers/Dialogs/MoneyInDialog/index.tsx b/src/containers/Dialogs/MoneyInDialog/index.tsx index 0c87f9d36..18e1bb292 100644 --- a/src/containers/Dialogs/MoneyInDialog/index.tsx +++ b/src/containers/Dialogs/MoneyInDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Dialog, DialogSuspense } from '@/components'; diff --git a/src/containers/Dialogs/MoneyInDialog/utils.tsx b/src/containers/Dialogs/MoneyInDialog/utils.tsx index 278f5338c..bd4333dec 100644 --- a/src/containers/Dialogs/MoneyInDialog/utils.tsx +++ b/src/containers/Dialogs/MoneyInDialog/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Dialogs/MoneyOutDialog/MoneyOutContentFields.tsx b/src/containers/Dialogs/MoneyOutDialog/MoneyOutContentFields.tsx index 6d8fa1747..88f2b9769 100644 --- a/src/containers/Dialogs/MoneyOutDialog/MoneyOutContentFields.tsx +++ b/src/containers/Dialogs/MoneyOutDialog/MoneyOutContentFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import OtherExpnseFormFields from './OtherExpense/OtherExpnseFormFields'; diff --git a/src/containers/Dialogs/MoneyOutDialog/MoneyOutDialogContent.tsx b/src/containers/Dialogs/MoneyOutDialog/MoneyOutDialogContent.tsx index 70ec9424e..798e73211 100644 --- a/src/containers/Dialogs/MoneyOutDialog/MoneyOutDialogContent.tsx +++ b/src/containers/Dialogs/MoneyOutDialog/MoneyOutDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { MoneyOutProvider } from './MoneyOutDialogProvider'; import MoneyOutForm from './MoneyOutForm'; diff --git a/src/containers/Dialogs/MoneyOutDialog/MoneyOutDialogProvider.tsx b/src/containers/Dialogs/MoneyOutDialog/MoneyOutDialogProvider.tsx index 149b3d96f..cafe69a77 100644 --- a/src/containers/Dialogs/MoneyOutDialog/MoneyOutDialogProvider.tsx +++ b/src/containers/Dialogs/MoneyOutDialog/MoneyOutDialogProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DialogContent } from '@/components'; import { Features } from '@/constants'; diff --git a/src/containers/Dialogs/MoneyOutDialog/MoneyOutFloatingActions.tsx b/src/containers/Dialogs/MoneyOutDialog/MoneyOutFloatingActions.tsx index af71136e0..00e0e5692 100644 --- a/src/containers/Dialogs/MoneyOutDialog/MoneyOutFloatingActions.tsx +++ b/src/containers/Dialogs/MoneyOutDialog/MoneyOutFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, Button, Classes } from '@blueprintjs/core'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Dialogs/MoneyOutDialog/MoneyOutForm.schema.tsx b/src/containers/Dialogs/MoneyOutDialog/MoneyOutForm.schema.tsx index 6c846f090..4e69f6f4a 100644 --- a/src/containers/Dialogs/MoneyOutDialog/MoneyOutForm.schema.tsx +++ b/src/containers/Dialogs/MoneyOutDialog/MoneyOutForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; import { DATATYPES_LENGTH } from '@/constants/dataTypes'; diff --git a/src/containers/Dialogs/MoneyOutDialog/MoneyOutForm.tsx b/src/containers/Dialogs/MoneyOutDialog/MoneyOutForm.tsx index 6ae66994f..432726f31 100644 --- a/src/containers/Dialogs/MoneyOutDialog/MoneyOutForm.tsx +++ b/src/containers/Dialogs/MoneyOutDialog/MoneyOutForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import moment from 'moment'; diff --git a/src/containers/Dialogs/MoneyOutDialog/MoneyOutFormContent.tsx b/src/containers/Dialogs/MoneyOutDialog/MoneyOutFormContent.tsx index 98b9b545a..ba8414ca7 100644 --- a/src/containers/Dialogs/MoneyOutDialog/MoneyOutFormContent.tsx +++ b/src/containers/Dialogs/MoneyOutDialog/MoneyOutFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Form } from 'formik'; diff --git a/src/containers/Dialogs/MoneyOutDialog/MoneyOutFormDialog.tsx b/src/containers/Dialogs/MoneyOutDialog/MoneyOutFormDialog.tsx index 386a71d0b..d104fce21 100644 --- a/src/containers/Dialogs/MoneyOutDialog/MoneyOutFormDialog.tsx +++ b/src/containers/Dialogs/MoneyOutDialog/MoneyOutFormDialog.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Dialogs/MoneyOutDialog/MoneyOutFormFields.tsx b/src/containers/Dialogs/MoneyOutDialog/MoneyOutFormFields.tsx index 5788d5204..7cd637420 100644 --- a/src/containers/Dialogs/MoneyOutDialog/MoneyOutFormFields.tsx +++ b/src/containers/Dialogs/MoneyOutDialog/MoneyOutFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; import { Classes } from '@blueprintjs/core'; diff --git a/src/containers/Dialogs/MoneyOutDialog/OtherExpense/OtherExpnseFormFields.tsx b/src/containers/Dialogs/MoneyOutDialog/OtherExpense/OtherExpnseFormFields.tsx index f9182e090..a828bcab4 100644 --- a/src/containers/Dialogs/MoneyOutDialog/OtherExpense/OtherExpnseFormFields.tsx +++ b/src/containers/Dialogs/MoneyOutDialog/OtherExpense/OtherExpnseFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FastField, Field, ErrorMessage, useFormikContext } from 'formik'; import { diff --git a/src/containers/Dialogs/MoneyOutDialog/OwnerDrawings/OwnerDrawingsFormFields.tsx b/src/containers/Dialogs/MoneyOutDialog/OwnerDrawings/OwnerDrawingsFormFields.tsx index 342ae3f7a..bbdd0c783 100644 --- a/src/containers/Dialogs/MoneyOutDialog/OwnerDrawings/OwnerDrawingsFormFields.tsx +++ b/src/containers/Dialogs/MoneyOutDialog/OwnerDrawings/OwnerDrawingsFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FastField, Field, ErrorMessage, useFormikContext } from 'formik'; import { DateInput } from '@blueprintjs/datetime'; diff --git a/src/containers/Dialogs/MoneyOutDialog/TransactionTypeFields.tsx b/src/containers/Dialogs/MoneyOutDialog/TransactionTypeFields.tsx index a9c7ad018..bd2c3179c 100644 --- a/src/containers/Dialogs/MoneyOutDialog/TransactionTypeFields.tsx +++ b/src/containers/Dialogs/MoneyOutDialog/TransactionTypeFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FastField, Field, ErrorMessage } from 'formik'; import { FormGroup } from '@blueprintjs/core'; diff --git a/src/containers/Dialogs/MoneyOutDialog/TransferToAccount/TransferToAccountFormFields.tsx b/src/containers/Dialogs/MoneyOutDialog/TransferToAccount/TransferToAccountFormFields.tsx index e28b022a7..164920439 100644 --- a/src/containers/Dialogs/MoneyOutDialog/TransferToAccount/TransferToAccountFormFields.tsx +++ b/src/containers/Dialogs/MoneyOutDialog/TransferToAccount/TransferToAccountFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FastField, Field, ErrorMessage, useFormikContext } from 'formik'; import { diff --git a/src/containers/Dialogs/MoneyOutDialog/index.tsx b/src/containers/Dialogs/MoneyOutDialog/index.tsx index e31801ac6..a44bd93f6 100644 --- a/src/containers/Dialogs/MoneyOutDialog/index.tsx +++ b/src/containers/Dialogs/MoneyOutDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Dialog, DialogSuspense } from '@/components'; diff --git a/src/containers/Dialogs/MoneyOutDialog/utils.tsx b/src/containers/Dialogs/MoneyOutDialog/utils.tsx index 9add27e79..f661b6557 100644 --- a/src/containers/Dialogs/MoneyOutDialog/utils.tsx +++ b/src/containers/Dialogs/MoneyOutDialog/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Dialogs/NotifyEstimateViaSMSDialog/NotifyEstimateViaSMSDialogContent.tsx b/src/containers/Dialogs/NotifyEstimateViaSMSDialog/NotifyEstimateViaSMSDialogContent.tsx index 6384dcc1e..1a0b5c9c9 100644 --- a/src/containers/Dialogs/NotifyEstimateViaSMSDialog/NotifyEstimateViaSMSDialogContent.tsx +++ b/src/containers/Dialogs/NotifyEstimateViaSMSDialog/NotifyEstimateViaSMSDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { NotifyEstimateViaSMSFormProvider } from './NotifyEstimateViaSMSFormProvider'; import NotifyEstimateViaSMSForm from './NotifyEstimateViaSMSForm'; diff --git a/src/containers/Dialogs/NotifyEstimateViaSMSDialog/NotifyEstimateViaSMSForm.tsx b/src/containers/Dialogs/NotifyEstimateViaSMSDialog/NotifyEstimateViaSMSForm.tsx index 9c29a6ae3..8c1644055 100644 --- a/src/containers/Dialogs/NotifyEstimateViaSMSDialog/NotifyEstimateViaSMSForm.tsx +++ b/src/containers/Dialogs/NotifyEstimateViaSMSDialog/NotifyEstimateViaSMSForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; diff --git a/src/containers/Dialogs/NotifyEstimateViaSMSDialog/NotifyEstimateViaSMSFormProvider.tsx b/src/containers/Dialogs/NotifyEstimateViaSMSDialog/NotifyEstimateViaSMSFormProvider.tsx index 350651b65..4e1ea438c 100644 --- a/src/containers/Dialogs/NotifyEstimateViaSMSDialog/NotifyEstimateViaSMSFormProvider.tsx +++ b/src/containers/Dialogs/NotifyEstimateViaSMSDialog/NotifyEstimateViaSMSFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DialogContent } from '@/components'; import { diff --git a/src/containers/Dialogs/NotifyEstimateViaSMSDialog/index.tsx b/src/containers/Dialogs/NotifyEstimateViaSMSDialog/index.tsx index c3694230d..e433eec08 100644 --- a/src/containers/Dialogs/NotifyEstimateViaSMSDialog/index.tsx +++ b/src/containers/Dialogs/NotifyEstimateViaSMSDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Dialogs/NotifyInvoiceViaSMSDialog/NotifyInvoiceViaSMSDialogContent.tsx b/src/containers/Dialogs/NotifyInvoiceViaSMSDialog/NotifyInvoiceViaSMSDialogContent.tsx index 349312e89..f43e1e3ab 100644 --- a/src/containers/Dialogs/NotifyInvoiceViaSMSDialog/NotifyInvoiceViaSMSDialogContent.tsx +++ b/src/containers/Dialogs/NotifyInvoiceViaSMSDialog/NotifyInvoiceViaSMSDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { NotifyInvoiceViaSMSFormProvider } from './NotifyInvoiceViaSMSFormProvider'; diff --git a/src/containers/Dialogs/NotifyInvoiceViaSMSDialog/NotifyInvoiceViaSMSForm.tsx b/src/containers/Dialogs/NotifyInvoiceViaSMSDialog/NotifyInvoiceViaSMSForm.tsx index 9fe0a32e6..702326c71 100644 --- a/src/containers/Dialogs/NotifyInvoiceViaSMSDialog/NotifyInvoiceViaSMSForm.tsx +++ b/src/containers/Dialogs/NotifyInvoiceViaSMSDialog/NotifyInvoiceViaSMSForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { pick } from 'lodash'; diff --git a/src/containers/Dialogs/NotifyInvoiceViaSMSDialog/NotifyInvoiceViaSMSFormProvider.tsx b/src/containers/Dialogs/NotifyInvoiceViaSMSDialog/NotifyInvoiceViaSMSFormProvider.tsx index e3c34aca8..909e627c2 100644 --- a/src/containers/Dialogs/NotifyInvoiceViaSMSDialog/NotifyInvoiceViaSMSFormProvider.tsx +++ b/src/containers/Dialogs/NotifyInvoiceViaSMSDialog/NotifyInvoiceViaSMSFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DialogContent } from '@/components'; import { useCreateNotifyInvoiceBySMS, useInvoiceSMSDetail } from '@/hooks/query'; diff --git a/src/containers/Dialogs/NotifyInvoiceViaSMSDialog/index.tsx b/src/containers/Dialogs/NotifyInvoiceViaSMSDialog/index.tsx index 1e4cdd052..9f4c2e93d 100644 --- a/src/containers/Dialogs/NotifyInvoiceViaSMSDialog/index.tsx +++ b/src/containers/Dialogs/NotifyInvoiceViaSMSDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Dialogs/NotifyPaymentReceiveViaSMSDialog/NotifyPaymentReceiveViaFormProvider.tsx b/src/containers/Dialogs/NotifyPaymentReceiveViaSMSDialog/NotifyPaymentReceiveViaFormProvider.tsx index 8de22ed2a..9a49da981 100644 --- a/src/containers/Dialogs/NotifyPaymentReceiveViaSMSDialog/NotifyPaymentReceiveViaFormProvider.tsx +++ b/src/containers/Dialogs/NotifyPaymentReceiveViaSMSDialog/NotifyPaymentReceiveViaFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DialogContent } from '@/components'; import { diff --git a/src/containers/Dialogs/NotifyPaymentReceiveViaSMSDialog/NotifyPaymentReceiveViaSMSContent.tsx b/src/containers/Dialogs/NotifyPaymentReceiveViaSMSDialog/NotifyPaymentReceiveViaSMSContent.tsx index 8b1f49934..7658ca5f6 100644 --- a/src/containers/Dialogs/NotifyPaymentReceiveViaSMSDialog/NotifyPaymentReceiveViaSMSContent.tsx +++ b/src/containers/Dialogs/NotifyPaymentReceiveViaSMSDialog/NotifyPaymentReceiveViaSMSContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { NotifyPaymentReceiveViaFormProvider } from './NotifyPaymentReceiveViaFormProvider'; diff --git a/src/containers/Dialogs/NotifyPaymentReceiveViaSMSDialog/NotifyPaymentReceiveViaSMSForm.tsx b/src/containers/Dialogs/NotifyPaymentReceiveViaSMSDialog/NotifyPaymentReceiveViaSMSForm.tsx index abd6144bb..c3a7a9a3d 100644 --- a/src/containers/Dialogs/NotifyPaymentReceiveViaSMSDialog/NotifyPaymentReceiveViaSMSForm.tsx +++ b/src/containers/Dialogs/NotifyPaymentReceiveViaSMSDialog/NotifyPaymentReceiveViaSMSForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; diff --git a/src/containers/Dialogs/NotifyPaymentReceiveViaSMSDialog/index.tsx b/src/containers/Dialogs/NotifyPaymentReceiveViaSMSDialog/index.tsx index 2003e92ff..aa0b66457 100644 --- a/src/containers/Dialogs/NotifyPaymentReceiveViaSMSDialog/index.tsx +++ b/src/containers/Dialogs/NotifyPaymentReceiveViaSMSDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; import withDialogRedux from '@/components/DialogReduxConnect'; diff --git a/src/containers/Dialogs/NotifyReceiptViaSMSDialog/NotifyReceiptViaSMSDialogContent.tsx b/src/containers/Dialogs/NotifyReceiptViaSMSDialog/NotifyReceiptViaSMSDialogContent.tsx index 7f4e40e04..62ac0f67f 100644 --- a/src/containers/Dialogs/NotifyReceiptViaSMSDialog/NotifyReceiptViaSMSDialogContent.tsx +++ b/src/containers/Dialogs/NotifyReceiptViaSMSDialog/NotifyReceiptViaSMSDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { NotifyReceiptViaSMSFormProvider } from './NotifyReceiptViaSMSFormProvider'; diff --git a/src/containers/Dialogs/NotifyReceiptViaSMSDialog/NotifyReceiptViaSMSForm.tsx b/src/containers/Dialogs/NotifyReceiptViaSMSDialog/NotifyReceiptViaSMSForm.tsx index 0983094be..1598a6f85 100644 --- a/src/containers/Dialogs/NotifyReceiptViaSMSDialog/NotifyReceiptViaSMSForm.tsx +++ b/src/containers/Dialogs/NotifyReceiptViaSMSDialog/NotifyReceiptViaSMSForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; diff --git a/src/containers/Dialogs/NotifyReceiptViaSMSDialog/NotifyReceiptViaSMSFormProvider.tsx b/src/containers/Dialogs/NotifyReceiptViaSMSDialog/NotifyReceiptViaSMSFormProvider.tsx index 2f5da4130..18d904d48 100644 --- a/src/containers/Dialogs/NotifyReceiptViaSMSDialog/NotifyReceiptViaSMSFormProvider.tsx +++ b/src/containers/Dialogs/NotifyReceiptViaSMSDialog/NotifyReceiptViaSMSFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DialogContent } from '@/components'; import { useCreateNotifyReceiptBySMS, useReceiptSMSDetail } from '@/hooks/query'; diff --git a/src/containers/Dialogs/NotifyReceiptViaSMSDialog/index.tsx b/src/containers/Dialogs/NotifyReceiptViaSMSDialog/index.tsx index bbb144f77..cfe0c5acf 100644 --- a/src/containers/Dialogs/NotifyReceiptViaSMSDialog/index.tsx +++ b/src/containers/Dialogs/NotifyReceiptViaSMSDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FormattedMessage as T } from '@/components'; import { Dialog, DialogSuspense } from '@/components'; diff --git a/src/containers/Dialogs/PaymentReceiveNumberDialog/PaymentReceiveNumberDialogContent.tsx b/src/containers/Dialogs/PaymentReceiveNumberDialog/PaymentReceiveNumberDialogContent.tsx index ed8cc5343..5b9cfc2e1 100644 --- a/src/containers/Dialogs/PaymentReceiveNumberDialog/PaymentReceiveNumberDialogContent.tsx +++ b/src/containers/Dialogs/PaymentReceiveNumberDialog/PaymentReceiveNumberDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import intl from 'react-intl-universal'; diff --git a/src/containers/Dialogs/PaymentReceiveNumberDialog/index.tsx b/src/containers/Dialogs/PaymentReceiveNumberDialog/index.tsx index 4b342e4d6..ba9c02581 100644 --- a/src/containers/Dialogs/PaymentReceiveNumberDialog/index.tsx +++ b/src/containers/Dialogs/PaymentReceiveNumberDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { lazy } from 'react'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; import withDialogRedux from '@/components/DialogReduxConnect'; diff --git a/src/containers/Dialogs/PaymentReceivePdfPreviewDialog/PaymentReceivePdfPreviewContent.tsx b/src/containers/Dialogs/PaymentReceivePdfPreviewDialog/PaymentReceivePdfPreviewContent.tsx index 7524da326..b76b9d658 100644 --- a/src/containers/Dialogs/PaymentReceivePdfPreviewDialog/PaymentReceivePdfPreviewContent.tsx +++ b/src/containers/Dialogs/PaymentReceivePdfPreviewDialog/PaymentReceivePdfPreviewContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { AnchorButton } from '@blueprintjs/core'; diff --git a/src/containers/Dialogs/PaymentReceivePdfPreviewDialog/index.tsx b/src/containers/Dialogs/PaymentReceivePdfPreviewDialog/index.tsx index 63e23ef12..89a86709d 100644 --- a/src/containers/Dialogs/PaymentReceivePdfPreviewDialog/index.tsx +++ b/src/containers/Dialogs/PaymentReceivePdfPreviewDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; diff --git a/src/containers/Dialogs/PaymentViaVoucherDialog/PaymentViaVoucherDialogContent.tsx b/src/containers/Dialogs/PaymentViaVoucherDialog/PaymentViaVoucherDialogContent.tsx index 38f98f091..18cfcd9ea 100644 --- a/src/containers/Dialogs/PaymentViaVoucherDialog/PaymentViaVoucherDialogContent.tsx +++ b/src/containers/Dialogs/PaymentViaVoucherDialog/PaymentViaVoucherDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import * as Yup from 'yup'; diff --git a/src/containers/Dialogs/PaymentViaVoucherDialog/PaymentViaVoucherForm.tsx b/src/containers/Dialogs/PaymentViaVoucherDialog/PaymentViaVoucherForm.tsx index 246192dfc..32be2f0b9 100644 --- a/src/containers/Dialogs/PaymentViaVoucherDialog/PaymentViaVoucherForm.tsx +++ b/src/containers/Dialogs/PaymentViaVoucherDialog/PaymentViaVoucherForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, FormGroup, InputGroup, Intent } from '@blueprintjs/core'; import { Form, FastField, ErrorMessage, useFormikContext } from 'formik'; diff --git a/src/containers/Dialogs/PaymentViaVoucherDialog/index.tsx b/src/containers/Dialogs/PaymentViaVoucherDialog/index.tsx index fe2c1eaf6..f9c9c57a0 100644 --- a/src/containers/Dialogs/PaymentViaVoucherDialog/index.tsx +++ b/src/containers/Dialogs/PaymentViaVoucherDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { lazy } from 'react'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMade.schema.tsx b/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMade.schema.tsx index ea95d00ba..51b6c9d2d 100644 --- a/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMade.schema.tsx +++ b/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMade.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; import { DATATYPES_LENGTH } from '@/constants/dataTypes'; diff --git a/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFloatingActions.tsx b/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFloatingActions.tsx index 715a77807..ae7ac6e6f 100644 --- a/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFloatingActions.tsx +++ b/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, Button, Classes } from '@blueprintjs/core'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeForm.tsx b/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeForm.tsx index ceee817e8..49b51a32b 100644 --- a/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeForm.tsx +++ b/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Formik } from 'formik'; diff --git a/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFormContent.tsx b/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFormContent.tsx index f2bbd8615..1885e10d0 100644 --- a/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFormContent.tsx +++ b/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Form } from 'formik'; import QuickPaymentMadeFormFields from './QuickPaymentMadeFormFields'; diff --git a/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFormDialogContent.tsx b/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFormDialogContent.tsx index 7b701ff15..f87fd78ac 100644 --- a/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFormDialogContent.tsx +++ b/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFormDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import '@/style/pages/PaymentReceive/QuickPaymentReceiveDialog.scss'; diff --git a/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFormFields.tsx b/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFormFields.tsx index a093f5c49..d5e875519 100644 --- a/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFormFields.tsx +++ b/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFormProvider.tsx b/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFormProvider.tsx index 3cc3506a2..cc444ab6b 100644 --- a/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFormProvider.tsx +++ b/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DialogContent } from '@/components'; import { diff --git a/src/containers/Dialogs/QuickPaymentMadeFormDialog/index.tsx b/src/containers/Dialogs/QuickPaymentMadeFormDialog/index.tsx index 7a5f054b8..e98ea1fa5 100644 --- a/src/containers/Dialogs/QuickPaymentMadeFormDialog/index.tsx +++ b/src/containers/Dialogs/QuickPaymentMadeFormDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { lazy } from 'react'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; import withDialogRedux from '@/components/DialogReduxConnect'; diff --git a/src/containers/Dialogs/QuickPaymentMadeFormDialog/utils.tsx b/src/containers/Dialogs/QuickPaymentMadeFormDialog/utils.tsx index 83cdcc448..1b659194d 100644 --- a/src/containers/Dialogs/QuickPaymentMadeFormDialog/utils.tsx +++ b/src/containers/Dialogs/QuickPaymentMadeFormDialog/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import intl from 'react-intl-universal'; diff --git a/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceive.schema.tsx b/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceive.schema.tsx index 2bbfa9b28..ef8c20c2a 100644 --- a/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceive.schema.tsx +++ b/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceive.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; import { DATATYPES_LENGTH } from '@/constants/dataTypes'; diff --git a/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFloatingActions.tsx b/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFloatingActions.tsx index 3ecadb403..72794092d 100644 --- a/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFloatingActions.tsx +++ b/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, Button, Classes } from '@blueprintjs/core'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveForm.tsx b/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveForm.tsx index 7fdebb2a6..082707f26 100644 --- a/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveForm.tsx +++ b/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Formik } from 'formik'; diff --git a/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFormContent.tsx b/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFormContent.tsx index a7644d2e5..5304bfff8 100644 --- a/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFormContent.tsx +++ b/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Form } from 'formik'; import QuickPaymentReceiveFormFields from './QuickPaymentReceiveFormFields'; diff --git a/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFormDialogContent.tsx b/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFormDialogContent.tsx index acee9ca6b..8df83628c 100644 --- a/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFormDialogContent.tsx +++ b/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFormDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import '@/style/pages/PaymentReceive/QuickPaymentReceiveDialog.scss'; diff --git a/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFormFields.tsx b/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFormFields.tsx index bc07ee93e..b5ebcd358 100644 --- a/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFormFields.tsx +++ b/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import intl from 'react-intl-universal'; diff --git a/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFormProvider.tsx b/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFormProvider.tsx index 522b5580e..0c17e7ee1 100644 --- a/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFormProvider.tsx +++ b/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useContext, createContext } from 'react'; import { pick } from 'lodash'; import { DialogContent } from '@/components'; diff --git a/src/containers/Dialogs/QuickPaymentReceiveFormDialog/index.tsx b/src/containers/Dialogs/QuickPaymentReceiveFormDialog/index.tsx index 08fcf3abe..cf145145f 100644 --- a/src/containers/Dialogs/QuickPaymentReceiveFormDialog/index.tsx +++ b/src/containers/Dialogs/QuickPaymentReceiveFormDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { lazy } from 'react'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Dialogs/QuickPaymentReceiveFormDialog/utils.tsx b/src/containers/Dialogs/QuickPaymentReceiveFormDialog/utils.tsx index bc1c540e1..673ad9f49 100644 --- a/src/containers/Dialogs/QuickPaymentReceiveFormDialog/utils.tsx +++ b/src/containers/Dialogs/QuickPaymentReceiveFormDialog/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import intl from 'react-intl-universal'; diff --git a/src/containers/Dialogs/ReceiptNumberDialog/ReceiptNumberDialogContent.tsx b/src/containers/Dialogs/ReceiptNumberDialog/ReceiptNumberDialogContent.tsx index d9914f2da..584c6ade2 100644 --- a/src/containers/Dialogs/ReceiptNumberDialog/ReceiptNumberDialogContent.tsx +++ b/src/containers/Dialogs/ReceiptNumberDialog/ReceiptNumberDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import intl from 'react-intl-universal'; diff --git a/src/containers/Dialogs/ReceiptNumberDialog/index.tsx b/src/containers/Dialogs/ReceiptNumberDialog/index.tsx index 376600a4d..e741572e4 100644 --- a/src/containers/Dialogs/ReceiptNumberDialog/index.tsx +++ b/src/containers/Dialogs/ReceiptNumberDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { lazy } from 'react'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; import withDialogRedux from '@/components/DialogReduxConnect'; diff --git a/src/containers/Dialogs/ReceiptPdfPreviewDialog/ReceiptPdfPreviewDialogContent.tsx b/src/containers/Dialogs/ReceiptPdfPreviewDialog/ReceiptPdfPreviewDialogContent.tsx index da89ebda1..fea9394ff 100644 --- a/src/containers/Dialogs/ReceiptPdfPreviewDialog/ReceiptPdfPreviewDialogContent.tsx +++ b/src/containers/Dialogs/ReceiptPdfPreviewDialog/ReceiptPdfPreviewDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { AnchorButton } from '@blueprintjs/core'; diff --git a/src/containers/Dialogs/ReceiptPdfPreviewDialog/index.tsx b/src/containers/Dialogs/ReceiptPdfPreviewDialog/index.tsx index b1fe8056a..51bbc9572 100644 --- a/src/containers/Dialogs/ReceiptPdfPreviewDialog/index.tsx +++ b/src/containers/Dialogs/ReceiptPdfPreviewDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { T, Dialog, DialogSuspense } from '@/components'; import classNames from 'classnames'; diff --git a/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteDialogContent.tsx b/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteDialogContent.tsx index 62b18d718..3c7fc625d 100644 --- a/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteDialogContent.tsx +++ b/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { ReconcileCreditNoteFormProvider } from './ReconcileCreditNoteFormProvider'; import ReconcileCreditNoteForm from './ReconcileCreditNoteForm'; diff --git a/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteEntriesTable.tsx b/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteEntriesTable.tsx index b2d43bad6..15b6a4c41 100644 --- a/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteEntriesTable.tsx +++ b/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteEntriesTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { defaultTo } from 'lodash'; diff --git a/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteForm.schema.tsx b/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteForm.schema.tsx index a6cd9dc09..4a7593dfb 100644 --- a/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteForm.schema.tsx +++ b/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; const Schema = Yup.object().shape({ diff --git a/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteForm.tsx b/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteForm.tsx index b58a7b116..1b9fb97a2 100644 --- a/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteForm.tsx +++ b/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Formik } from 'formik'; diff --git a/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteFormContent.tsx b/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteFormContent.tsx index 95a35e569..51a5732f2 100644 --- a/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteFormContent.tsx +++ b/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Form } from 'formik'; import { Choose } from '@/components'; diff --git a/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteFormFields.tsx b/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteFormFields.tsx index 8ff27cec4..5066d6ee3 100644 --- a/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteFormFields.tsx +++ b/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { FastField, useFormikContext } from 'formik'; diff --git a/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteFormFloatingActions.tsx b/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteFormFloatingActions.tsx index 104b0ac4e..68c2f729b 100644 --- a/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteFormFloatingActions.tsx +++ b/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteFormFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; import { Intent, Button, Classes } from '@blueprintjs/core'; diff --git a/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteFormProvider.tsx b/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteFormProvider.tsx index d71d96131..6873fa65d 100644 --- a/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteFormProvider.tsx +++ b/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DialogContent } from '@/components'; import { diff --git a/src/containers/Dialogs/ReconcileCreditNoteDialog/index.tsx b/src/containers/Dialogs/ReconcileCreditNoteDialog/index.tsx index bd0d0610c..b8862a862 100644 --- a/src/containers/Dialogs/ReconcileCreditNoteDialog/index.tsx +++ b/src/containers/Dialogs/ReconcileCreditNoteDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FormattedMessage as T, Dialog, DialogSuspense } from '@/components'; import withDialogRedux from '@/components/DialogReduxConnect'; diff --git a/src/containers/Dialogs/ReconcileCreditNoteDialog/utils.tsx b/src/containers/Dialogs/ReconcileCreditNoteDialog/utils.tsx index 1a367ed40..e4aaa681a 100644 --- a/src/containers/Dialogs/ReconcileCreditNoteDialog/utils.tsx +++ b/src/containers/Dialogs/ReconcileCreditNoteDialog/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import * as R from 'ramda'; diff --git a/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditDialogContent.tsx b/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditDialogContent.tsx index 651b33756..9b3623b79 100644 --- a/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditDialogContent.tsx +++ b/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { ReconcileVendorCreditFormProvider } from './ReconcileVendorCreditFormProvider'; import ReconcileVendorCreditForm from './ReconcileVendorCreditForm'; diff --git a/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditEntriesTable.tsx b/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditEntriesTable.tsx index 69012d360..dbc9a7465 100644 --- a/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditEntriesTable.tsx +++ b/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditEntriesTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import * as R from 'ramda'; diff --git a/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditFloatingActions.tsx b/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditFloatingActions.tsx index 6af4103a2..f0897a8b2 100644 --- a/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditFloatingActions.tsx +++ b/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; import { Intent, Button, Classes } from '@blueprintjs/core'; diff --git a/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditForm.schema.tsx b/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditForm.schema.tsx index d15b472d9..cd3f3542a 100644 --- a/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditForm.schema.tsx +++ b/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; const Schema = Yup.object().shape({ diff --git a/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditForm.tsx b/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditForm.tsx index 856e53cc9..9c393725a 100644 --- a/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditForm.tsx +++ b/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Formik } from 'formik'; diff --git a/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditFormContent.tsx b/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditFormContent.tsx index 2295ffa52..8d55814c5 100644 --- a/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditFormContent.tsx +++ b/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Form } from 'formik'; import { Choose } from '@/components'; diff --git a/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditFormFields.tsx b/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditFormFields.tsx index 618173553..7c8a6a6cf 100644 --- a/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditFormFields.tsx +++ b/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { FastField, useFormikContext } from 'formik'; diff --git a/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditFormProvider.tsx b/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditFormProvider.tsx index 8ac34d328..d353d7030 100644 --- a/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditFormProvider.tsx +++ b/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DialogContent } from '@/components'; import { diff --git a/src/containers/Dialogs/ReconcileVendorCreditDialog/index.tsx b/src/containers/Dialogs/ReconcileVendorCreditDialog/index.tsx index 6febedd21..b6d375183 100644 --- a/src/containers/Dialogs/ReconcileVendorCreditDialog/index.tsx +++ b/src/containers/Dialogs/ReconcileVendorCreditDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FormattedMessage as T, Dialog, DialogSuspense } from '@/components'; import withDialogRedux from '@/components/DialogReduxConnect'; diff --git a/src/containers/Dialogs/ReconcileVendorCreditDialog/utils.tsx b/src/containers/Dialogs/ReconcileVendorCreditDialog/utils.tsx index b7b07ec7c..4ee4ca005 100644 --- a/src/containers/Dialogs/ReconcileVendorCreditDialog/utils.tsx +++ b/src/containers/Dialogs/ReconcileVendorCreditDialog/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import clsx from 'classnames'; diff --git a/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteDialogContent.tsx b/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteDialogContent.tsx index 7dfe3730b..721c7199e 100644 --- a/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteDialogContent.tsx +++ b/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import '@/style/pages/RefundCreditNote/RefundCreditNote.scss'; diff --git a/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteFloatingActions.tsx b/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteFloatingActions.tsx index 475f69825..cbbff27f7 100644 --- a/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteFloatingActions.tsx +++ b/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, Button, Classes } from '@blueprintjs/core'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteForm.schema.tsx b/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteForm.schema.tsx index 1aae51758..b435785da 100644 --- a/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteForm.schema.tsx +++ b/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; import { DATATYPES_LENGTH } from '@/constants/dataTypes'; diff --git a/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteForm.tsx b/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteForm.tsx index 8f92253df..82dee3890 100644 --- a/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteForm.tsx +++ b/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import intl from 'react-intl-universal'; diff --git a/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteFormContent.tsx b/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteFormContent.tsx index d763729bb..aa01c9195 100644 --- a/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteFormContent.tsx +++ b/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Form } from 'formik'; import RefundCreditNoteFormFields from './RefundCreditNoteFormFields'; diff --git a/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteFormFields.tsx b/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteFormFields.tsx index f886398f1..7eac07e81 100644 --- a/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteFormFields.tsx +++ b/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import intl from 'react-intl-universal'; diff --git a/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteFormProvider.tsx b/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteFormProvider.tsx index 0c19d2b9d..32d9705cb 100644 --- a/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteFormProvider.tsx +++ b/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DialogContent } from '@/components'; import { pick } from 'lodash'; diff --git a/src/containers/Dialogs/RefundCreditNoteDialog/index.tsx b/src/containers/Dialogs/RefundCreditNoteDialog/index.tsx index 76cadbc1c..9eee8c856 100644 --- a/src/containers/Dialogs/RefundCreditNoteDialog/index.tsx +++ b/src/containers/Dialogs/RefundCreditNoteDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Dialogs/RefundCreditNoteDialog/utils.tsx b/src/containers/Dialogs/RefundCreditNoteDialog/utils.tsx index 9372d4d89..3facdcb8c 100644 --- a/src/containers/Dialogs/RefundCreditNoteDialog/utils.tsx +++ b/src/containers/Dialogs/RefundCreditNoteDialog/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; import { first } from 'lodash'; diff --git a/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditDialogContent.tsx b/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditDialogContent.tsx index 5cecef20c..36df26de9 100644 --- a/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditDialogContent.tsx +++ b/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import '@/style/pages/RefundVendorCredit/RefundVendorCredit.scss'; diff --git a/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFloatingActions.tsx b/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFloatingActions.tsx index d8f9fd01d..c9b931d64 100644 --- a/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFloatingActions.tsx +++ b/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, Button, Classes } from '@blueprintjs/core'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditForm.schema.tsx b/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditForm.schema.tsx index 93ed4702d..1803b458b 100644 --- a/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditForm.schema.tsx +++ b/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; import { DATATYPES_LENGTH } from '@/constants/dataTypes'; diff --git a/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditForm.tsx b/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditForm.tsx index 8bd73161a..d7b2c9f5e 100644 --- a/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditForm.tsx +++ b/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import moment from 'moment'; diff --git a/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFormContent.tsx b/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFormContent.tsx index dfc391028..0880bf1a8 100644 --- a/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFormContent.tsx +++ b/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Form } from 'formik'; import RefundVendorCreditFormFields from './RefundVendorCreditFormFields'; diff --git a/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFormFields.tsx b/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFormFields.tsx index 9b455e12a..1297b6399 100644 --- a/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFormFields.tsx +++ b/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFormProvider.tsx b/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFormProvider.tsx index 3c47300a2..3aa09e323 100644 --- a/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFormProvider.tsx +++ b/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DialogContent } from '@/components'; import { pick } from 'lodash'; diff --git a/src/containers/Dialogs/RefundVendorCreditDialog/index.tsx b/src/containers/Dialogs/RefundVendorCreditDialog/index.tsx index a2cf9bb16..fca8ec369 100644 --- a/src/containers/Dialogs/RefundVendorCreditDialog/index.tsx +++ b/src/containers/Dialogs/RefundVendorCreditDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Dialogs/RefundVendorCreditDialog/utils.tsx b/src/containers/Dialogs/RefundVendorCreditDialog/utils.tsx index f2933a3a2..fd29d9461 100644 --- a/src/containers/Dialogs/RefundVendorCreditDialog/utils.tsx +++ b/src/containers/Dialogs/RefundVendorCreditDialog/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; import { first } from 'lodash'; diff --git a/src/containers/Dialogs/SMSMessageDialog/SMSMessageDialogContent.tsx b/src/containers/Dialogs/SMSMessageDialog/SMSMessageDialogContent.tsx index ab3d2f220..b45dcd7c1 100644 --- a/src/containers/Dialogs/SMSMessageDialog/SMSMessageDialogContent.tsx +++ b/src/containers/Dialogs/SMSMessageDialog/SMSMessageDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import '@/style/pages/SMSMessage/SMSMessage.scss'; diff --git a/src/containers/Dialogs/SMSMessageDialog/SMSMessageDialogProvider.tsx b/src/containers/Dialogs/SMSMessageDialog/SMSMessageDialogProvider.tsx index a94af2853..74896c6ca 100644 --- a/src/containers/Dialogs/SMSMessageDialog/SMSMessageDialogProvider.tsx +++ b/src/containers/Dialogs/SMSMessageDialog/SMSMessageDialogProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DialogContent } from '@/components'; import { diff --git a/src/containers/Dialogs/SMSMessageDialog/SMSMessageForm.schema.tsx b/src/containers/Dialogs/SMSMessageDialog/SMSMessageForm.schema.tsx index 8d3678373..26e109410 100644 --- a/src/containers/Dialogs/SMSMessageDialog/SMSMessageForm.schema.tsx +++ b/src/containers/Dialogs/SMSMessageDialog/SMSMessageForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; import { DATATYPES_LENGTH } from '@/constants/dataTypes'; diff --git a/src/containers/Dialogs/SMSMessageDialog/SMSMessageForm.tsx b/src/containers/Dialogs/SMSMessageDialog/SMSMessageForm.tsx index b1ced6e9d..da20d25c9 100644 --- a/src/containers/Dialogs/SMSMessageDialog/SMSMessageForm.tsx +++ b/src/containers/Dialogs/SMSMessageDialog/SMSMessageForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Formik } from 'formik'; diff --git a/src/containers/Dialogs/SMSMessageDialog/SMSMessageFormContent.tsx b/src/containers/Dialogs/SMSMessageDialog/SMSMessageFormContent.tsx index a85ee91be..9137be6c0 100644 --- a/src/containers/Dialogs/SMSMessageDialog/SMSMessageFormContent.tsx +++ b/src/containers/Dialogs/SMSMessageDialog/SMSMessageFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Dialogs/SMSMessageDialog/SMSMessageFormFields.tsx b/src/containers/Dialogs/SMSMessageDialog/SMSMessageFormFields.tsx index 90c90504e..7ff699b95 100644 --- a/src/containers/Dialogs/SMSMessageDialog/SMSMessageFormFields.tsx +++ b/src/containers/Dialogs/SMSMessageDialog/SMSMessageFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { useFormikContext, FastField, ErrorMessage } from 'formik'; diff --git a/src/containers/Dialogs/SMSMessageDialog/SMSMessageFormFloatingActions.tsx b/src/containers/Dialogs/SMSMessageDialog/SMSMessageFormFloatingActions.tsx index a0a864b62..b2b4e802d 100644 --- a/src/containers/Dialogs/SMSMessageDialog/SMSMessageFormFloatingActions.tsx +++ b/src/containers/Dialogs/SMSMessageDialog/SMSMessageFormFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, Button } from '@blueprintjs/core'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Dialogs/SMSMessageDialog/index.tsx b/src/containers/Dialogs/SMSMessageDialog/index.tsx index 1c51bfa0b..0bb5517a7 100644 --- a/src/containers/Dialogs/SMSMessageDialog/index.tsx +++ b/src/containers/Dialogs/SMSMessageDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Dialog, DialogSuspense } from '@/components'; diff --git a/src/containers/Dialogs/SMSMessageDialog/utils.tsx b/src/containers/Dialogs/SMSMessageDialog/utils.tsx index 6b94176bd..c838c3e02 100644 --- a/src/containers/Dialogs/SMSMessageDialog/utils.tsx +++ b/src/containers/Dialogs/SMSMessageDialog/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { Intent } from '@blueprintjs/core'; import { castArray } from 'lodash'; diff --git a/src/containers/Dialogs/TaskDialog/components/index.ts b/src/containers/Dialogs/TaskDialog/components/index.ts deleted file mode 100644 index e69de29bb..000000000 diff --git a/src/containers/Dialogs/TransactionNumberDialog/TransactionNumberDialogContent.tsx b/src/containers/Dialogs/TransactionNumberDialog/TransactionNumberDialogContent.tsx index beaa17ec5..163857416 100644 --- a/src/containers/Dialogs/TransactionNumberDialog/TransactionNumberDialogContent.tsx +++ b/src/containers/Dialogs/TransactionNumberDialog/TransactionNumberDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { useSaveSettings } from '@/hooks/query'; diff --git a/src/containers/Dialogs/TransactionNumberDialog/TransactionNumberDialogProvider.tsx b/src/containers/Dialogs/TransactionNumberDialog/TransactionNumberDialogProvider.tsx index c1494bf4c..3f413ca45 100644 --- a/src/containers/Dialogs/TransactionNumberDialog/TransactionNumberDialogProvider.tsx +++ b/src/containers/Dialogs/TransactionNumberDialog/TransactionNumberDialogProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DialogContent } from '@/components'; import { useSettingCashFlow } from '@/hooks/query'; diff --git a/src/containers/Dialogs/TransactionNumberDialog/index.tsx b/src/containers/Dialogs/TransactionNumberDialog/index.tsx index ce152ed55..68a98b505 100644 --- a/src/containers/Dialogs/TransactionNumberDialog/index.tsx +++ b/src/containers/Dialogs/TransactionNumberDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; import withDialogRedux from '@/components/DialogReduxConnect'; diff --git a/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsDialogContent.tsx b/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsDialogContent.tsx index 6b5772da2..de9d70854 100644 --- a/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsDialogContent.tsx +++ b/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { UnlockingPartialTransactionsFormProvider } from './UnlockingPartialTransactionsFormProvider'; diff --git a/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsForm.schema.tsx b/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsForm.schema.tsx index ca6c9e0ea..b32bf80f0 100644 --- a/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsForm.schema.tsx +++ b/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; import { DATATYPES_LENGTH } from '@/constants/dataTypes'; diff --git a/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsForm.tsx b/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsForm.tsx index d9329ae9f..2efc02c50 100644 --- a/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsForm.tsx +++ b/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import moment from 'moment'; diff --git a/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsFormContent.tsx b/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsFormContent.tsx index 9a8c24cac..32b5edcb5 100644 --- a/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsFormContent.tsx +++ b/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Form } from 'formik'; diff --git a/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsFormFields.tsx b/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsFormFields.tsx index f87d91eb3..621de9777 100644 --- a/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsFormFields.tsx +++ b/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FastField, ErrorMessage } from 'formik'; import { Classes, FormGroup, TextArea, Position } from '@blueprintjs/core'; diff --git a/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsFormFloatingActions.tsx b/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsFormFloatingActions.tsx index 0e80dabf7..1f0328a97 100644 --- a/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsFormFloatingActions.tsx +++ b/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsFormFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, Button, Classes } from '@blueprintjs/core'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsFormProvider.tsx b/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsFormProvider.tsx index 42e28ef70..af3e64440 100644 --- a/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsFormProvider.tsx +++ b/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DialogContent } from '@/components'; import { useCreateUnlockingPartialTransactions } from '@/hooks/query'; diff --git a/src/containers/Dialogs/UnlockingPartialTransactionsDialog/index.tsx b/src/containers/Dialogs/UnlockingPartialTransactionsDialog/index.tsx index 3f91df633..d7406b257 100644 --- a/src/containers/Dialogs/UnlockingPartialTransactionsDialog/index.tsx +++ b/src/containers/Dialogs/UnlockingPartialTransactionsDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; import withDialogRedux from '@/components/DialogReduxConnect'; diff --git a/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsDialogContent.tsx b/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsDialogContent.tsx index 2b262c6d2..4f77ecb75 100644 --- a/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsDialogContent.tsx +++ b/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import UnlockingTransactionsForm from './UnlockingTransactionsForm'; diff --git a/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsForm.schema.tsx b/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsForm.schema.tsx index 302044075..05414a261 100644 --- a/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsForm.schema.tsx +++ b/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; import { DATATYPES_LENGTH } from '@/constants/dataTypes'; diff --git a/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsForm.tsx b/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsForm.tsx index 217536b35..3bb733c10 100644 --- a/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsForm.tsx +++ b/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent } from '@blueprintjs/core'; diff --git a/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsFormContent.tsx b/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsFormContent.tsx index 351723de2..da271fed6 100644 --- a/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsFormContent.tsx +++ b/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Form } from 'formik'; diff --git a/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsFormFields.tsx b/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsFormFields.tsx index 7aefccd96..2e5c34c16 100644 --- a/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsFormFields.tsx +++ b/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FastField, ErrorMessage } from 'formik'; import { Classes, FormGroup, TextArea } from '@blueprintjs/core'; diff --git a/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsFormFloatingActions.tsx b/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsFormFloatingActions.tsx index 90620b3fd..560189e82 100644 --- a/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsFormFloatingActions.tsx +++ b/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsFormFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, Button, Classes } from '@blueprintjs/core'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsFormProvider.tsx b/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsFormProvider.tsx index 5da8866d6..837df9253 100644 --- a/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsFormProvider.tsx +++ b/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DialogContent } from '@/components'; import { useCancelLockingTransaction } from '@/hooks/query'; diff --git a/src/containers/Dialogs/UnlockingTransactionsDialog/index.tsx b/src/containers/Dialogs/UnlockingTransactionsDialog/index.tsx index 8caeaa17d..6b90c2112 100644 --- a/src/containers/Dialogs/UnlockingTransactionsDialog/index.tsx +++ b/src/containers/Dialogs/UnlockingTransactionsDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; import withDialogRedux from '@/components/DialogReduxConnect'; diff --git a/src/containers/Dialogs/UserFormDialog.connector.tsx b/src/containers/Dialogs/UserFormDialog.connector.tsx index 268d60fab..33d7c72b1 100644 --- a/src/containers/Dialogs/UserFormDialog.connector.tsx +++ b/src/containers/Dialogs/UserFormDialog.connector.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getUserDetails } from '@/store/users/users.reducer'; import { getDialogPayload } from '@/store/dashboard/dashboard.reducer'; diff --git a/src/containers/Dialogs/UserFormDialog/UserForm.schema.tsx b/src/containers/Dialogs/UserFormDialog/UserForm.schema.tsx index 347319e3e..a17a891b8 100644 --- a/src/containers/Dialogs/UserFormDialog/UserForm.schema.tsx +++ b/src/containers/Dialogs/UserFormDialog/UserForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; diff --git a/src/containers/Dialogs/UserFormDialog/UserForm.tsx b/src/containers/Dialogs/UserFormDialog/UserForm.tsx index bc25489ed..76dd6eae3 100644 --- a/src/containers/Dialogs/UserFormDialog/UserForm.tsx +++ b/src/containers/Dialogs/UserFormDialog/UserForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Formik } from 'formik'; diff --git a/src/containers/Dialogs/UserFormDialog/UserFormContent.tsx b/src/containers/Dialogs/UserFormDialog/UserFormContent.tsx index e20844405..3114ed6bd 100644 --- a/src/containers/Dialogs/UserFormDialog/UserFormContent.tsx +++ b/src/containers/Dialogs/UserFormDialog/UserFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FormGroup, diff --git a/src/containers/Dialogs/UserFormDialog/UserFormDialogContent.tsx b/src/containers/Dialogs/UserFormDialog/UserFormDialogContent.tsx index 3fb3e9add..bc6109e41 100644 --- a/src/containers/Dialogs/UserFormDialog/UserFormDialogContent.tsx +++ b/src/containers/Dialogs/UserFormDialog/UserFormDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import UserForm from './UserForm'; diff --git a/src/containers/Dialogs/UserFormDialog/UserFormProvider.tsx b/src/containers/Dialogs/UserFormDialog/UserFormProvider.tsx index 33b8de836..fcb0d11d4 100644 --- a/src/containers/Dialogs/UserFormDialog/UserFormProvider.tsx +++ b/src/containers/Dialogs/UserFormDialog/UserFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useContext } from 'react'; import { useEditUser, diff --git a/src/containers/Dialogs/UserFormDialog/components.tsx b/src/containers/Dialogs/UserFormDialog/components.tsx index 687cdd164..1426f0c62 100644 --- a/src/containers/Dialogs/UserFormDialog/components.tsx +++ b/src/containers/Dialogs/UserFormDialog/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { includes } from 'lodash'; diff --git a/src/containers/Dialogs/UserFormDialog/index.tsx b/src/containers/Dialogs/UserFormDialog/index.tsx index d6c28f6e9..c51b0fec5 100644 --- a/src/containers/Dialogs/UserFormDialog/index.tsx +++ b/src/containers/Dialogs/UserFormDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { lazy } from 'react'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; import withDialogRedux from '@/components/DialogReduxConnect'; diff --git a/src/containers/Dialogs/UserFormDialog/utils.tsx b/src/containers/Dialogs/UserFormDialog/utils.tsx index 8ec73acaa..c823c54ec 100644 --- a/src/containers/Dialogs/UserFormDialog/utils.tsx +++ b/src/containers/Dialogs/UserFormDialog/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; // handle delete errors. diff --git a/src/containers/Dialogs/UsersListDialog.connector.tsx b/src/containers/Dialogs/UsersListDialog.connector.tsx index 63849b02c..5370b6285 100644 --- a/src/containers/Dialogs/UsersListDialog.connector.tsx +++ b/src/containers/Dialogs/UsersListDialog.connector.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getUserDetails } from '@/store/users/users.reducer'; import { getDialogPayload } from '@/store/dashboard/dashboard.reducer'; diff --git a/src/containers/Dialogs/VendorCreditNumberDialog/VendorCreditNumberDialogContent.tsx b/src/containers/Dialogs/VendorCreditNumberDialog/VendorCreditNumberDialogContent.tsx index f52d5f4b3..a83c139af 100644 --- a/src/containers/Dialogs/VendorCreditNumberDialog/VendorCreditNumberDialogContent.tsx +++ b/src/containers/Dialogs/VendorCreditNumberDialog/VendorCreditNumberDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { useSaveSettings } from '@/hooks/query'; diff --git a/src/containers/Dialogs/VendorCreditNumberDialog/VendorCreditNumberDilaogProvider.tsx b/src/containers/Dialogs/VendorCreditNumberDialog/VendorCreditNumberDilaogProvider.tsx index 8d463b315..39f427338 100644 --- a/src/containers/Dialogs/VendorCreditNumberDialog/VendorCreditNumberDilaogProvider.tsx +++ b/src/containers/Dialogs/VendorCreditNumberDialog/VendorCreditNumberDilaogProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DialogContent } from '@/components'; import { useSettingsVendorCredits } from '@/hooks/query'; diff --git a/src/containers/Dialogs/VendorCreditNumberDialog/index.tsx b/src/containers/Dialogs/VendorCreditNumberDialog/index.tsx index a7751c3fe..a885c0699 100644 --- a/src/containers/Dialogs/VendorCreditNumberDialog/index.tsx +++ b/src/containers/Dialogs/VendorCreditNumberDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; import withDialogRedux from '@/components/DialogReduxConnect'; diff --git a/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceDialogContent.tsx b/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceDialogContent.tsx index 85749e1e8..dfd1aabda 100644 --- a/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceDialogContent.tsx +++ b/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import '@/style/pages/VendorOpeningBalance/VendorOpeningBalance.scss'; diff --git a/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceForm.schema.tsx b/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceForm.schema.tsx index 5435aa0b7..eaff77e83 100644 --- a/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceForm.schema.tsx +++ b/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; const Schema = Yup.object().shape({ diff --git a/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceForm.tsx b/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceForm.tsx index 82b69bd87..da688a862 100644 --- a/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceForm.tsx +++ b/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import intl from 'react-intl-universal'; diff --git a/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceFormContent.tsx b/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceFormContent.tsx index 4cdca9151..2b4628655 100644 --- a/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceFormContent.tsx +++ b/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Form } from 'formik'; diff --git a/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceFormFields.tsx b/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceFormFields.tsx index e0ea03eaa..68d6576ab 100644 --- a/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceFormFields.tsx +++ b/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Classes, Position, FormGroup, ControlGroup } from '@blueprintjs/core'; import { DateInput } from '@blueprintjs/datetime'; diff --git a/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceFormFloatingActions.tsx b/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceFormFloatingActions.tsx index d23b929a2..fe029a677 100644 --- a/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceFormFloatingActions.tsx +++ b/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceFormFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, Button, Classes } from '@blueprintjs/core'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceFormProvider.tsx b/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceFormProvider.tsx index e4270100c..722d66a00 100644 --- a/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceFormProvider.tsx +++ b/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DialogContent } from '@/components'; import { diff --git a/src/containers/Dialogs/VendorOpeningBalanceDialog/index.tsx b/src/containers/Dialogs/VendorOpeningBalanceDialog/index.tsx index 016a75b5a..91d73e53a 100644 --- a/src/containers/Dialogs/VendorOpeningBalanceDialog/index.tsx +++ b/src/containers/Dialogs/VendorOpeningBalanceDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Dialogs/VendorOpeningBalanceDialog/utils.tsx b/src/containers/Dialogs/VendorOpeningBalanceDialog/utils.tsx index ca739d669..c7b0e5102 100644 --- a/src/containers/Dialogs/VendorOpeningBalanceDialog/utils.tsx +++ b/src/containers/Dialogs/VendorOpeningBalanceDialog/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; import { first, pick } from 'lodash'; diff --git a/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateDialogContent.tsx b/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateDialogContent.tsx index b0950d535..ca92d0cee 100644 --- a/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateDialogContent.tsx +++ b/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import WarehouseActivateForm from './WarehouseActivateForm'; diff --git a/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateForm.tsx b/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateForm.tsx index 297cf32d0..d6c794a91 100644 --- a/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateForm.tsx +++ b/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; diff --git a/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateFormContent.tsx b/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateFormContent.tsx index 6baecbb66..155d762de 100644 --- a/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateFormContent.tsx +++ b/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Form } from 'formik'; diff --git a/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateFormFloatingActions.tsx b/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateFormFloatingActions.tsx index 7dde36e5e..e2ca8ea56 100644 --- a/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateFormFloatingActions.tsx +++ b/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateFormFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, Button, Classes } from '@blueprintjs/core'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateFormProvider.tsx b/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateFormProvider.tsx index c52712dd2..e84358180 100644 --- a/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateFormProvider.tsx +++ b/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DialogContent } from '@/components'; diff --git a/src/containers/Dialogs/WarehouseActivateDialog/index.tsx b/src/containers/Dialogs/WarehouseActivateDialog/index.tsx index 9045dd1e0..1537c0c0d 100644 --- a/src/containers/Dialogs/WarehouseActivateDialog/index.tsx +++ b/src/containers/Dialogs/WarehouseActivateDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; import withDialogRedux from '@/components/DialogReduxConnect'; diff --git a/src/containers/Dialogs/WarehouseFormDialog/WarehouseForm.schema.tsx b/src/containers/Dialogs/WarehouseFormDialog/WarehouseForm.schema.tsx index ce38ffdea..3e08d88ef 100644 --- a/src/containers/Dialogs/WarehouseFormDialog/WarehouseForm.schema.tsx +++ b/src/containers/Dialogs/WarehouseFormDialog/WarehouseForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; import { DATATYPES_LENGTH } from '@/constants/dataTypes'; diff --git a/src/containers/Dialogs/WarehouseFormDialog/WarehouseForm.tsx b/src/containers/Dialogs/WarehouseFormDialog/WarehouseForm.tsx index ed0e5138d..e8e4632d4 100644 --- a/src/containers/Dialogs/WarehouseFormDialog/WarehouseForm.tsx +++ b/src/containers/Dialogs/WarehouseFormDialog/WarehouseForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; diff --git a/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormContent.tsx b/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormContent.tsx index 6816f703e..560fe06bc 100644 --- a/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormContent.tsx +++ b/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Form } from 'formik'; diff --git a/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormDialogContent.tsx b/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormDialogContent.tsx index 7d94613d4..727373870 100644 --- a/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormDialogContent.tsx +++ b/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import '@/style/pages/Warehouses/warehouseFormDialog.scss'; diff --git a/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormFields.tsx b/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormFields.tsx index 5675323dc..6068f943f 100644 --- a/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormFields.tsx +++ b/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormFloatingActions.tsx b/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormFloatingActions.tsx index 6b346d3e5..38f3d78e8 100644 --- a/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormFloatingActions.tsx +++ b/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, Button, Classes } from '@blueprintjs/core'; diff --git a/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormProvider.tsx b/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormProvider.tsx index f05937072..2a3f43f25 100644 --- a/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormProvider.tsx +++ b/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DialogContent } from '@/components'; import { diff --git a/src/containers/Dialogs/WarehouseFormDialog/index.tsx b/src/containers/Dialogs/WarehouseFormDialog/index.tsx index 6d7a36f6d..40e0e6d7c 100644 --- a/src/containers/Dialogs/WarehouseFormDialog/index.tsx +++ b/src/containers/Dialogs/WarehouseFormDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; import withDialogRedux from '@/components/DialogReduxConnect'; diff --git a/src/containers/Dialogs/WarehouseFormDialog/utils.tsx b/src/containers/Dialogs/WarehouseFormDialog/utils.tsx index 804ef19e2..2948bec01 100644 --- a/src/containers/Dialogs/WarehouseFormDialog/utils.tsx +++ b/src/containers/Dialogs/WarehouseFormDialog/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; /** diff --git a/src/containers/Dialogs/WarehouseTransferNumberDialog/WarehouseTransferNumberDialogContent.tsx b/src/containers/Dialogs/WarehouseTransferNumberDialog/WarehouseTransferNumberDialogContent.tsx index c79e99bb2..5e8328d22 100644 --- a/src/containers/Dialogs/WarehouseTransferNumberDialog/WarehouseTransferNumberDialogContent.tsx +++ b/src/containers/Dialogs/WarehouseTransferNumberDialog/WarehouseTransferNumberDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; diff --git a/src/containers/Dialogs/WarehouseTransferNumberDialog/WarehouseTransferNumberDialogProvider.tsx b/src/containers/Dialogs/WarehouseTransferNumberDialog/WarehouseTransferNumberDialogProvider.tsx index 018769996..af8317442 100644 --- a/src/containers/Dialogs/WarehouseTransferNumberDialog/WarehouseTransferNumberDialogProvider.tsx +++ b/src/containers/Dialogs/WarehouseTransferNumberDialog/WarehouseTransferNumberDialogProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext } from 'react'; import { DialogContent } from '@/components'; import { useSettingsWarehouseTransfers } from '@/hooks/query'; diff --git a/src/containers/Dialogs/WarehouseTransferNumberDialog/index.tsx b/src/containers/Dialogs/WarehouseTransferNumberDialog/index.tsx index 552ff1fd9..ee49d2a27 100644 --- a/src/containers/Dialogs/WarehouseTransferNumberDialog/index.tsx +++ b/src/containers/Dialogs/WarehouseTransferNumberDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; import withDialogRedux from '@/components/DialogReduxConnect'; diff --git a/src/containers/Dialogs/keyboardShortcutsDialog/KeyboardShortcutsDialogContent.tsx b/src/containers/Dialogs/keyboardShortcutsDialog/KeyboardShortcutsDialogContent.tsx index dbd1137cb..bd3bbc81a 100644 --- a/src/containers/Dialogs/keyboardShortcutsDialog/KeyboardShortcutsDialogContent.tsx +++ b/src/containers/Dialogs/keyboardShortcutsDialog/KeyboardShortcutsDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DialogContent } from '@/components'; import ShortcutsTable from '../../KeyboardShortcuts/ShortcutsTable'; diff --git a/src/containers/Dialogs/keyboardShortcutsDialog/KeyboardShortcutsFooter.tsx b/src/containers/Dialogs/keyboardShortcutsDialog/KeyboardShortcutsFooter.tsx index 9655bd12b..a845c3645 100644 --- a/src/containers/Dialogs/keyboardShortcutsDialog/KeyboardShortcutsFooter.tsx +++ b/src/containers/Dialogs/keyboardShortcutsDialog/KeyboardShortcutsFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, Intent } from '@blueprintjs/core'; import { FormattedMessage as T } from '@/components'; diff --git a/src/containers/Dialogs/keyboardShortcutsDialog/index.tsx b/src/containers/Dialogs/keyboardShortcutsDialog/index.tsx index 620478e54..ff21048ae 100644 --- a/src/containers/Dialogs/keyboardShortcutsDialog/index.tsx +++ b/src/containers/Dialogs/keyboardShortcutsDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { lazy } from 'react'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; import withDialogRedux from '@/components/DialogReduxConnect'; diff --git a/src/containers/Drawer/withDrawerActions.tsx b/src/containers/Drawer/withDrawerActions.tsx index 567d218d2..43c406454 100644 --- a/src/containers/Drawer/withDrawerActions.tsx +++ b/src/containers/Drawer/withDrawerActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import t from '@/store/types'; diff --git a/src/containers/Drawer/withDrawers.tsx b/src/containers/Drawer/withDrawers.tsx index 1e879e3bd..c7198ec58 100644 --- a/src/containers/Drawer/withDrawers.tsx +++ b/src/containers/Drawer/withDrawers.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { isDrawerOpenFactory, diff --git a/src/containers/Drawers/AccountDrawer/AccountDrawerActionBar.tsx b/src/containers/Drawers/AccountDrawer/AccountDrawerActionBar.tsx index 2aa5652e1..b0e702cb8 100644 --- a/src/containers/Drawers/AccountDrawer/AccountDrawerActionBar.tsx +++ b/src/containers/Drawers/AccountDrawer/AccountDrawerActionBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, diff --git a/src/containers/Drawers/AccountDrawer/AccountDrawerContent.tsx b/src/containers/Drawers/AccountDrawer/AccountDrawerContent.tsx index 86cafa9e1..908a26f59 100644 --- a/src/containers/Drawers/AccountDrawer/AccountDrawerContent.tsx +++ b/src/containers/Drawers/AccountDrawer/AccountDrawerContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DrawerBody } from '@/components'; diff --git a/src/containers/Drawers/AccountDrawer/AccountDrawerDetails.tsx b/src/containers/Drawers/AccountDrawer/AccountDrawerDetails.tsx index 83c340b0e..0383f16bb 100644 --- a/src/containers/Drawers/AccountDrawer/AccountDrawerDetails.tsx +++ b/src/containers/Drawers/AccountDrawer/AccountDrawerDetails.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Card } from '@/components'; diff --git a/src/containers/Drawers/AccountDrawer/AccountDrawerHeader.tsx b/src/containers/Drawers/AccountDrawer/AccountDrawerHeader.tsx index 3dc964716..17ae69a0e 100644 --- a/src/containers/Drawers/AccountDrawer/AccountDrawerHeader.tsx +++ b/src/containers/Drawers/AccountDrawer/AccountDrawerHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { defaultTo } from 'lodash'; diff --git a/src/containers/Drawers/AccountDrawer/AccountDrawerProvider.tsx b/src/containers/Drawers/AccountDrawer/AccountDrawerProvider.tsx index 4d827ebe0..62f7fa66f 100644 --- a/src/containers/Drawers/AccountDrawer/AccountDrawerProvider.tsx +++ b/src/containers/Drawers/AccountDrawer/AccountDrawerProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useAccount, useAccountTransactions } from '@/hooks/query'; import { DrawerHeaderContent, DrawerLoading } from '@/components'; diff --git a/src/containers/Drawers/AccountDrawer/AccountDrawerTable.tsx b/src/containers/Drawers/AccountDrawer/AccountDrawerTable.tsx index 3c27261d0..785ed93f9 100644 --- a/src/containers/Drawers/AccountDrawer/AccountDrawerTable.tsx +++ b/src/containers/Drawers/AccountDrawer/AccountDrawerTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Link } from 'react-router-dom'; diff --git a/src/containers/Drawers/AccountDrawer/index.tsx b/src/containers/Drawers/AccountDrawer/index.tsx index 442b2b71a..dc64d43c2 100644 --- a/src/containers/Drawers/AccountDrawer/index.tsx +++ b/src/containers/Drawers/AccountDrawer/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { lazy } from 'react'; import { Drawer, DrawerSuspense } from '@/components'; import withDrawers from '@/containers/Drawer/withDrawers'; diff --git a/src/containers/Drawers/AccountDrawer/utils.tsx b/src/containers/Drawers/AccountDrawer/utils.tsx index 258ac80a5..de1a237ea 100644 --- a/src/containers/Drawers/AccountDrawer/utils.tsx +++ b/src/containers/Drawers/AccountDrawer/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; import React from 'react'; diff --git a/src/containers/Drawers/BillDrawer/BillDetailActionsBar.tsx b/src/containers/Drawers/BillDrawer/BillDetailActionsBar.tsx index 4dfcabdce..0a73fb9d2 100644 --- a/src/containers/Drawers/BillDrawer/BillDetailActionsBar.tsx +++ b/src/containers/Drawers/BillDrawer/BillDetailActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Drawers/BillDrawer/BillDetailFooter.tsx b/src/containers/Drawers/BillDrawer/BillDetailFooter.tsx index 9843e8c6f..0948821f3 100644 --- a/src/containers/Drawers/BillDrawer/BillDetailFooter.tsx +++ b/src/containers/Drawers/BillDrawer/BillDetailFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { CommercialDocFooter, diff --git a/src/containers/Drawers/BillDrawer/BillDetailHeader.tsx b/src/containers/Drawers/BillDrawer/BillDetailHeader.tsx index ca44b71f9..b8fa7a78f 100644 --- a/src/containers/Drawers/BillDrawer/BillDetailHeader.tsx +++ b/src/containers/Drawers/BillDrawer/BillDetailHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/BillDrawer/BillDetailTab.tsx b/src/containers/Drawers/BillDrawer/BillDetailTab.tsx index 782b2da6c..2cc3571af 100644 --- a/src/containers/Drawers/BillDrawer/BillDetailTab.tsx +++ b/src/containers/Drawers/BillDrawer/BillDetailTab.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import BillDetailHeader from './BillDetailHeader'; diff --git a/src/containers/Drawers/BillDrawer/BillDetailTable.tsx b/src/containers/Drawers/BillDrawer/BillDetailTable.tsx index 265f3d2f4..3f1e73023 100644 --- a/src/containers/Drawers/BillDrawer/BillDetailTable.tsx +++ b/src/containers/Drawers/BillDrawer/BillDetailTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { CommercialDocEntriesTable } from '@/components'; diff --git a/src/containers/Drawers/BillDrawer/BillDetailTableFooter.tsx b/src/containers/Drawers/BillDrawer/BillDetailTableFooter.tsx index 03ad1150f..6ad6d62d5 100644 --- a/src/containers/Drawers/BillDrawer/BillDetailTableFooter.tsx +++ b/src/containers/Drawers/BillDrawer/BillDetailTableFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/BillDrawer/BillDrawerContent.tsx b/src/containers/Drawers/BillDrawer/BillDrawerContent.tsx index c4c44268e..ff99cfa40 100644 --- a/src/containers/Drawers/BillDrawer/BillDrawerContent.tsx +++ b/src/containers/Drawers/BillDrawer/BillDrawerContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DrawerBody } from '@/components'; diff --git a/src/containers/Drawers/BillDrawer/BillDrawerDetails.tsx b/src/containers/Drawers/BillDrawer/BillDrawerDetails.tsx index 1fdd2d01d..f734a198e 100644 --- a/src/containers/Drawers/BillDrawer/BillDrawerDetails.tsx +++ b/src/containers/Drawers/BillDrawer/BillDrawerDetails.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Tab } from '@blueprintjs/core'; import intl from 'react-intl-universal'; diff --git a/src/containers/Drawers/BillDrawer/BillDrawerProvider.tsx b/src/containers/Drawers/BillDrawer/BillDrawerProvider.tsx index 93a481047..8047f8893 100644 --- a/src/containers/Drawers/BillDrawer/BillDrawerProvider.tsx +++ b/src/containers/Drawers/BillDrawer/BillDrawerProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { DrawerHeaderContent, DrawerLoading } from '@/components'; diff --git a/src/containers/Drawers/BillDrawer/BillGLEntriesTable.tsx b/src/containers/Drawers/BillDrawer/BillGLEntriesTable.tsx index 8a82eebff..499dc2453 100644 --- a/src/containers/Drawers/BillDrawer/BillGLEntriesTable.tsx +++ b/src/containers/Drawers/BillDrawer/BillGLEntriesTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/BillDrawer/BillPaymentTransactions/BillPaymentTransactionTable.tsx b/src/containers/Drawers/BillDrawer/BillPaymentTransactions/BillPaymentTransactionTable.tsx index da703e23f..8fafd4af6 100644 --- a/src/containers/Drawers/BillDrawer/BillPaymentTransactions/BillPaymentTransactionTable.tsx +++ b/src/containers/Drawers/BillDrawer/BillPaymentTransactions/BillPaymentTransactionTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; import { DataTable, Card, TableSkeletonRows } from '@/components'; diff --git a/src/containers/Drawers/BillDrawer/BillPaymentTransactions/components.tsx b/src/containers/Drawers/BillDrawer/BillPaymentTransactions/components.tsx index 7c8698197..cbd3c0f71 100644 --- a/src/containers/Drawers/BillDrawer/BillPaymentTransactions/components.tsx +++ b/src/containers/Drawers/BillDrawer/BillPaymentTransactions/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import clsx from 'classnames'; diff --git a/src/containers/Drawers/BillDrawer/LocatedLandedCostTable.tsx b/src/containers/Drawers/BillDrawer/LocatedLandedCostTable.tsx index 6a346e2be..7d050d917 100644 --- a/src/containers/Drawers/BillDrawer/LocatedLandedCostTable.tsx +++ b/src/containers/Drawers/BillDrawer/LocatedLandedCostTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DataTable, diff --git a/src/containers/Drawers/BillDrawer/components.tsx b/src/containers/Drawers/BillDrawer/components.tsx index 2792584fe..90ea31b79 100644 --- a/src/containers/Drawers/BillDrawer/components.tsx +++ b/src/containers/Drawers/BillDrawer/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/BillDrawer/index.tsx b/src/containers/Drawers/BillDrawer/index.tsx index 88caaae1e..e1f5a2aaa 100644 --- a/src/containers/Drawers/BillDrawer/index.tsx +++ b/src/containers/Drawers/BillDrawer/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Drawer, DrawerSuspense } from '@/components'; import withDrawers from '@/containers/Drawer/withDrawers'; diff --git a/src/containers/Drawers/BillDrawer/utils.tsx b/src/containers/Drawers/BillDrawer/utils.tsx index 45fd93cf8..39cf8052d 100644 --- a/src/containers/Drawers/BillDrawer/utils.tsx +++ b/src/containers/Drawers/BillDrawer/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerActionBar.tsx b/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerActionBar.tsx index ef5d38fab..ade249bae 100644 --- a/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerActionBar.tsx +++ b/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerActionBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, Classes, NavbarGroup, Intent } from '@blueprintjs/core'; import { diff --git a/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerContent.tsx b/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerContent.tsx index 4ce25e474..8ed3283b4 100644 --- a/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerContent.tsx +++ b/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import '@/style/components/Drawers/CashflowTransactionDrawer.scss'; diff --git a/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerDetails.tsx b/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerDetails.tsx index 08de2d6a3..4dec0dae4 100644 --- a/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerDetails.tsx +++ b/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerDetails.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Card } from '@/components'; diff --git a/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerFooter.tsx b/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerFooter.tsx index afb80cbaf..79c6a0706 100644 --- a/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerFooter.tsx +++ b/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useCashflowTransactionDrawerContext } from './CashflowTransactionDrawerProvider'; import { T, FormatNumber } from '@/components'; diff --git a/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerHeader.tsx b/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerHeader.tsx index 437c31be7..3fc0477cd 100644 --- a/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerHeader.tsx +++ b/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { defaultTo } from 'lodash'; import { diff --git a/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerProvider.tsx b/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerProvider.tsx index f6ab381c0..4d4f69c58 100644 --- a/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerProvider.tsx +++ b/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { useCashflowTransaction } from '@/hooks/query'; diff --git a/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerTable.tsx b/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerTable.tsx index 4e000b9f8..19d1408f8 100644 --- a/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerTable.tsx +++ b/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { CommercialDocEntriesTable } from '@/components'; diff --git a/src/containers/Drawers/CashflowTransactionDetailDrawer/index.tsx b/src/containers/Drawers/CashflowTransactionDetailDrawer/index.tsx index 35d839e24..c190dfac2 100644 --- a/src/containers/Drawers/CashflowTransactionDetailDrawer/index.tsx +++ b/src/containers/Drawers/CashflowTransactionDetailDrawer/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Drawer, DrawerSuspense } from '@/components'; diff --git a/src/containers/Drawers/CashflowTransactionDetailDrawer/utils.tsx b/src/containers/Drawers/CashflowTransactionDetailDrawer/utils.tsx index b7f5a24f5..b5b4b9c1b 100644 --- a/src/containers/Drawers/CashflowTransactionDetailDrawer/utils.tsx +++ b/src/containers/Drawers/CashflowTransactionDetailDrawer/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; import React from 'react'; diff --git a/src/containers/Drawers/ContactDetailDrawer/ContactDetail.tsx b/src/containers/Drawers/ContactDetailDrawer/ContactDetail.tsx index dbb106096..48ad9974f 100644 --- a/src/containers/Drawers/ContactDetailDrawer/ContactDetail.tsx +++ b/src/containers/Drawers/ContactDetailDrawer/ContactDetail.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import ContactDetailActionsBar from './ContactDetailActionsBar'; import ContactDetailList from './ContactDetailList'; diff --git a/src/containers/Drawers/ContactDetailDrawer/ContactDetailActionsBar.tsx b/src/containers/Drawers/ContactDetailDrawer/ContactDetailActionsBar.tsx index 0c9bf7082..1befa9888 100644 --- a/src/containers/Drawers/ContactDetailDrawer/ContactDetailActionsBar.tsx +++ b/src/containers/Drawers/ContactDetailDrawer/ContactDetailActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Drawers/ContactDetailDrawer/ContactDetailDrawerContent.tsx b/src/containers/Drawers/ContactDetailDrawer/ContactDetailDrawerContent.tsx index ade909631..666fe118d 100644 --- a/src/containers/Drawers/ContactDetailDrawer/ContactDetailDrawerContent.tsx +++ b/src/containers/Drawers/ContactDetailDrawer/ContactDetailDrawerContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import ContactDetail from './ContactDetail'; diff --git a/src/containers/Drawers/ContactDetailDrawer/ContactDetailDrawerProvider.tsx b/src/containers/Drawers/ContactDetailDrawer/ContactDetailDrawerProvider.tsx index 9db0632d1..dedc10ef4 100644 --- a/src/containers/Drawers/ContactDetailDrawer/ContactDetailDrawerProvider.tsx +++ b/src/containers/Drawers/ContactDetailDrawer/ContactDetailDrawerProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DrawerHeaderContent, DashboardInsider } from '@/components'; import { useContact } from '@/hooks/query'; diff --git a/src/containers/Drawers/ContactDetailDrawer/ContactDetailList.tsx b/src/containers/Drawers/ContactDetailDrawer/ContactDetailList.tsx index 3fdf8f745..5fbe3cd67 100644 --- a/src/containers/Drawers/ContactDetailDrawer/ContactDetailList.tsx +++ b/src/containers/Drawers/ContactDetailDrawer/ContactDetailList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Money } from '@/components'; diff --git a/src/containers/Drawers/ContactDetailDrawer/index.tsx b/src/containers/Drawers/ContactDetailDrawer/index.tsx index 1074a8c18..54945ed42 100644 --- a/src/containers/Drawers/ContactDetailDrawer/index.tsx +++ b/src/containers/Drawers/ContactDetailDrawer/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Drawer, DrawerSuspense } from '@/components'; import withDrawers from '@/containers/Drawer/withDrawers'; diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetail.tsx b/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetail.tsx index ce03286b9..8c9f5e06f 100644 --- a/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetail.tsx +++ b/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetail.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailActionsBar.tsx b/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailActionsBar.tsx index 198d96aca..18582d453 100644 --- a/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailActionsBar.tsx +++ b/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; import { diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailDrawerContent.tsx b/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailDrawerContent.tsx index 5282b51d0..5c49cad10 100644 --- a/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailDrawerContent.tsx +++ b/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailDrawerContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DrawerBody } from '@/components'; diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailDrawerProvider.tsx b/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailDrawerProvider.tsx index 37eae1b56..a27b8b280 100644 --- a/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailDrawerProvider.tsx +++ b/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailDrawerProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailFooter.tsx b/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailFooter.tsx index d5d127e96..91b0c7627 100644 --- a/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailFooter.tsx +++ b/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { CommercialDocFooter, diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailHeader.tsx b/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailHeader.tsx index b8be8a296..0d1f30dea 100644 --- a/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailHeader.tsx +++ b/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailPanel.tsx b/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailPanel.tsx index 11b7054d3..5d52714d0 100644 --- a/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailPanel.tsx +++ b/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailPanel.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { CommercialDocBox } from '@/components'; diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailTable.tsx b/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailTable.tsx index 56ce6f5ed..08d200488 100644 --- a/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailTable.tsx +++ b/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { CommercialDocEntriesTable } from '@/components'; diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailTableFooter.tsx b/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailTableFooter.tsx index 166c78be6..66ecf1b66 100644 --- a/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailTableFooter.tsx +++ b/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailTableFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/JournalEntriesTransactions/JournalEntriesTransactionsTable.tsx b/src/containers/Drawers/CreditNoteDetailDrawer/JournalEntriesTransactions/JournalEntriesTransactionsTable.tsx index 8ce13b6b4..0ebdcc523 100644 --- a/src/containers/Drawers/CreditNoteDetailDrawer/JournalEntriesTransactions/JournalEntriesTransactionsTable.tsx +++ b/src/containers/Drawers/CreditNoteDetailDrawer/JournalEntriesTransactions/JournalEntriesTransactionsTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Card } from '@/components'; diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/JournalEntriesTransactions/components.tsx b/src/containers/Drawers/CreditNoteDetailDrawer/JournalEntriesTransactions/components.tsx index 77df0e5b7..247d21a46 100644 --- a/src/containers/Drawers/CreditNoteDetailDrawer/JournalEntriesTransactions/components.tsx +++ b/src/containers/Drawers/CreditNoteDetailDrawer/JournalEntriesTransactions/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { FormatDateCell } from '@/components'; diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/ReconcileCreditNoteTransactions/ReconcileCreditNoteTransactionsTable.tsx b/src/containers/Drawers/CreditNoteDetailDrawer/ReconcileCreditNoteTransactions/ReconcileCreditNoteTransactionsTable.tsx index f2b72312e..b9974c5db 100644 --- a/src/containers/Drawers/CreditNoteDetailDrawer/ReconcileCreditNoteTransactions/ReconcileCreditNoteTransactionsTable.tsx +++ b/src/containers/Drawers/CreditNoteDetailDrawer/ReconcileCreditNoteTransactions/ReconcileCreditNoteTransactionsTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DataTable, Card } from '@/components'; diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/ReconcileCreditNoteTransactions/components.tsx b/src/containers/Drawers/CreditNoteDetailDrawer/ReconcileCreditNoteTransactions/components.tsx index f41ab952c..742edc5a6 100644 --- a/src/containers/Drawers/CreditNoteDetailDrawer/ReconcileCreditNoteTransactions/components.tsx +++ b/src/containers/Drawers/CreditNoteDetailDrawer/ReconcileCreditNoteTransactions/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, MenuItem, Menu } from '@blueprintjs/core'; diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/RefundCreditNoteTransactions/RefundCreditNoteTransactionsTable.tsx b/src/containers/Drawers/CreditNoteDetailDrawer/RefundCreditNoteTransactions/RefundCreditNoteTransactionsTable.tsx index 964cae2cf..ed4b443fc 100644 --- a/src/containers/Drawers/CreditNoteDetailDrawer/RefundCreditNoteTransactions/RefundCreditNoteTransactionsTable.tsx +++ b/src/containers/Drawers/CreditNoteDetailDrawer/RefundCreditNoteTransactions/RefundCreditNoteTransactionsTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DataTable, Card } from '@/components'; diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/RefundCreditNoteTransactions/components.tsx b/src/containers/Drawers/CreditNoteDetailDrawer/RefundCreditNoteTransactions/components.tsx index be643c0c2..b9fbbaed8 100644 --- a/src/containers/Drawers/CreditNoteDetailDrawer/RefundCreditNoteTransactions/components.tsx +++ b/src/containers/Drawers/CreditNoteDetailDrawer/RefundCreditNoteTransactions/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, MenuItem, Menu } from '@blueprintjs/core'; diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/index.tsx b/src/containers/Drawers/CreditNoteDetailDrawer/index.tsx index d64bfec3c..0539a7ed6 100644 --- a/src/containers/Drawers/CreditNoteDetailDrawer/index.tsx +++ b/src/containers/Drawers/CreditNoteDetailDrawer/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Drawer, DrawerSuspense } from '@/components'; import withDrawers from '@/containers/Drawer/withDrawers'; diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/utils.tsx b/src/containers/Drawers/CreditNoteDetailDrawer/utils.tsx index 8600c60f6..b9bb3a1e8 100644 --- a/src/containers/Drawers/CreditNoteDetailDrawer/utils.tsx +++ b/src/containers/Drawers/CreditNoteDetailDrawer/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { diff --git a/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetails.tsx b/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetails.tsx index 13cd55c94..257f74a89 100644 --- a/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetails.tsx +++ b/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetails.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import clsx from 'classnames'; diff --git a/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsActionsBar.tsx b/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsActionsBar.tsx index 41c7c8007..be262af00 100644 --- a/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsActionsBar.tsx +++ b/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import clsx from 'classnames'; diff --git a/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsDrawerContent.tsx b/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsDrawerContent.tsx index c09e218f9..36cde93c7 100644 --- a/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsDrawerContent.tsx +++ b/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsDrawerContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DrawerBody } from '@/components'; diff --git a/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsDrawerProvider.tsx b/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsDrawerProvider.tsx index ababd8b30..1468ce748 100644 --- a/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsDrawerProvider.tsx +++ b/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsDrawerProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useCustomer } from '@/hooks/query'; import { DrawerHeaderContent, DrawerLoading } from '@/components'; diff --git a/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsHeader.tsx b/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsHeader.tsx index 38649f8e9..b6ff8b4c6 100644 --- a/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsHeader.tsx +++ b/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import clsx from 'classnames'; diff --git a/src/containers/Drawers/CustomerDetailsDrawer/index.tsx b/src/containers/Drawers/CustomerDetailsDrawer/index.tsx index 45741c148..cb561108c 100644 --- a/src/containers/Drawers/CustomerDetailsDrawer/index.tsx +++ b/src/containers/Drawers/CustomerDetailsDrawer/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Drawer, DrawerSuspense } from '@/components'; import withDrawers from '@/containers/Drawer/withDrawers'; diff --git a/src/containers/Drawers/CustomerDetailsDrawer/utils.tsx b/src/containers/Drawers/CustomerDetailsDrawer/utils.tsx index c7d670e47..bfe4506de 100644 --- a/src/containers/Drawers/CustomerDetailsDrawer/utils.tsx +++ b/src/containers/Drawers/CustomerDetailsDrawer/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, diff --git a/src/containers/Drawers/EstimateDetailDrawer/EstimateDetail.tsx b/src/containers/Drawers/EstimateDetailDrawer/EstimateDetail.tsx index 0c4437ac9..4199497a8 100644 --- a/src/containers/Drawers/EstimateDetailDrawer/EstimateDetail.tsx +++ b/src/containers/Drawers/EstimateDetailDrawer/EstimateDetail.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import intl from 'react-intl-universal'; diff --git a/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailActionsBar.tsx b/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailActionsBar.tsx index 9a821985d..c8c7ca06f 100644 --- a/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailActionsBar.tsx +++ b/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailDrawerContent.tsx b/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailDrawerContent.tsx index e9c7b0503..e40371479 100644 --- a/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailDrawerContent.tsx +++ b/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailDrawerContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DrawerBody } from '@/components'; diff --git a/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailDrawerProvider.tsx b/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailDrawerProvider.tsx index 241a83ece..8bf449324 100644 --- a/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailDrawerProvider.tsx +++ b/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailDrawerProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Features } from '@/constants'; diff --git a/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailFooter.tsx b/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailFooter.tsx index ecd8f3453..50223e70e 100644 --- a/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailFooter.tsx +++ b/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { diff --git a/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailHeader.tsx b/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailHeader.tsx index 39e579a96..7c07ee1db 100644 --- a/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailHeader.tsx +++ b/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailPanel.tsx b/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailPanel.tsx index af95a91e6..dab62799c 100644 --- a/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailPanel.tsx +++ b/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailPanel.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { CommercialDocBox } from '@/components'; diff --git a/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailTable.tsx b/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailTable.tsx index c1d5181d4..26df57b6d 100644 --- a/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailTable.tsx +++ b/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { CommercialDocEntriesTable } from '@/components'; diff --git a/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailTableFooter.tsx b/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailTableFooter.tsx index 19d9c3b83..c5a79c935 100644 --- a/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailTableFooter.tsx +++ b/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailTableFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/EstimateDetailDrawer/EstimateDrawerClasses.tsx b/src/containers/Drawers/EstimateDetailDrawer/EstimateDrawerClasses.tsx index bed0d9e1d..ffe85a09e 100644 --- a/src/containers/Drawers/EstimateDetailDrawer/EstimateDrawerClasses.tsx +++ b/src/containers/Drawers/EstimateDetailDrawer/EstimateDrawerClasses.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck const globalStateClassesMapping = { active: 'active', checked: 'checked', diff --git a/src/containers/Drawers/EstimateDetailDrawer/components.tsx b/src/containers/Drawers/EstimateDetailDrawer/components.tsx index 9e583b08c..e56a0d3ab 100644 --- a/src/containers/Drawers/EstimateDetailDrawer/components.tsx +++ b/src/containers/Drawers/EstimateDetailDrawer/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, diff --git a/src/containers/Drawers/EstimateDetailDrawer/index.tsx b/src/containers/Drawers/EstimateDetailDrawer/index.tsx index 632c7d204..574b4b5f6 100644 --- a/src/containers/Drawers/EstimateDetailDrawer/index.tsx +++ b/src/containers/Drawers/EstimateDetailDrawer/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Drawer, DrawerSuspense } from '@/components'; import withDrawers from '@/containers/Drawer/withDrawers'; diff --git a/src/containers/Drawers/EstimateDetailDrawer/utils.tsx b/src/containers/Drawers/EstimateDetailDrawer/utils.tsx index c78666be7..3172feae4 100644 --- a/src/containers/Drawers/EstimateDetailDrawer/utils.tsx +++ b/src/containers/Drawers/EstimateDetailDrawer/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { getColumnWidth } from '@/utils'; diff --git a/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerActionBar.tsx b/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerActionBar.tsx index 0f321277f..402c946d0 100644 --- a/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerActionBar.tsx +++ b/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerActionBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; import { diff --git a/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerContent.tsx b/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerContent.tsx index c529e7936..eb9571ba5 100644 --- a/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerContent.tsx +++ b/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DrawerBody } from '@/components'; diff --git a/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerDetails.tsx b/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerDetails.tsx index 12794d70d..0194373df 100644 --- a/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerDetails.tsx +++ b/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerDetails.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerFooter.tsx b/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerFooter.tsx index d5f961f15..c1acea3f2 100644 --- a/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerFooter.tsx +++ b/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerHeader.tsx b/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerHeader.tsx index e772e2c0a..5adeaf9bc 100644 --- a/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerHeader.tsx +++ b/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerProvider.tsx b/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerProvider.tsx index 9f8e9b75c..4373db16d 100644 --- a/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerProvider.tsx +++ b/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { useExpense } from '@/hooks/query'; diff --git a/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerTable.tsx b/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerTable.tsx index 0338ffc42..dd0d4ccb6 100644 --- a/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerTable.tsx +++ b/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { CommercialDocEntriesTable } from '@/components'; diff --git a/src/containers/Drawers/ExpenseDrawer/components.tsx b/src/containers/Drawers/ExpenseDrawer/components.tsx index f899e73b9..a3989fad0 100644 --- a/src/containers/Drawers/ExpenseDrawer/components.tsx +++ b/src/containers/Drawers/ExpenseDrawer/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Tag, Intent } from '@blueprintjs/core'; diff --git a/src/containers/Drawers/ExpenseDrawer/index.tsx b/src/containers/Drawers/ExpenseDrawer/index.tsx index edb69f670..4bcaa6370 100644 --- a/src/containers/Drawers/ExpenseDrawer/index.tsx +++ b/src/containers/Drawers/ExpenseDrawer/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { lazy } from 'react'; import { Drawer, DrawerSuspense } from '@/components'; import withDrawers from '@/containers/Drawer/withDrawers'; diff --git a/src/containers/Drawers/ExpenseDrawer/utils.tsx b/src/containers/Drawers/ExpenseDrawer/utils.tsx index ccefcf3b0..276923cce 100644 --- a/src/containers/Drawers/ExpenseDrawer/utils.tsx +++ b/src/containers/Drawers/ExpenseDrawer/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; diff --git a/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetail.tsx b/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetail.tsx index 3d0c9755a..707a724b0 100644 --- a/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetail.tsx +++ b/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetail.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailActionsBar.tsx b/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailActionsBar.tsx index 66eee4d66..a07aaf105 100644 --- a/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailActionsBar.tsx +++ b/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, NavbarGroup, Classes, Intent } from '@blueprintjs/core'; diff --git a/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailGLEntriesPanel.tsx b/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailGLEntriesPanel.tsx index 1d4476aa5..5d0fa8eeb 100644 --- a/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailGLEntriesPanel.tsx +++ b/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailGLEntriesPanel.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailHeader.tsx b/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailHeader.tsx index b87d3083b..22aec2d0e 100644 --- a/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailHeader.tsx +++ b/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import intl from 'react-intl-universal'; diff --git a/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailTab.tsx b/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailTab.tsx index a573967a6..e6d59c293 100644 --- a/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailTab.tsx +++ b/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailTab.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailTable.tsx b/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailTable.tsx index 97a848e53..0926b7ec0 100644 --- a/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailTable.tsx +++ b/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { CommercialDocEntriesTable } from '@/components'; diff --git a/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDrawerContent.tsx b/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDrawerContent.tsx index 311607553..b2cafcc6d 100644 --- a/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDrawerContent.tsx +++ b/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDrawerContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DrawerBody } from '@/components'; diff --git a/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDrawerProvider.tsx b/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDrawerProvider.tsx index 3237d9cab..91781376a 100644 --- a/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDrawerProvider.tsx +++ b/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDrawerProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { DrawerHeaderContent, DrawerLoading } from '@/components'; diff --git a/src/containers/Drawers/InventoryAdjustmentDetailDrawer/index.tsx b/src/containers/Drawers/InventoryAdjustmentDetailDrawer/index.tsx index 8e4e9fa81..db281e128 100644 --- a/src/containers/Drawers/InventoryAdjustmentDetailDrawer/index.tsx +++ b/src/containers/Drawers/InventoryAdjustmentDetailDrawer/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Drawer, DrawerSuspense } from '@/components'; diff --git a/src/containers/Drawers/InventoryAdjustmentDetailDrawer/utils.tsx b/src/containers/Drawers/InventoryAdjustmentDetailDrawer/utils.tsx index 6eba97a1b..20701ecc7 100644 --- a/src/containers/Drawers/InventoryAdjustmentDetailDrawer/utils.tsx +++ b/src/containers/Drawers/InventoryAdjustmentDetailDrawer/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { getColumnWidth } from '@/utils'; diff --git a/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetail.tsx b/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetail.tsx index 27515ec98..159394cbb 100644 --- a/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetail.tsx +++ b/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetail.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import intl from 'react-intl-universal'; diff --git a/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailActionsBar.tsx b/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailActionsBar.tsx index 6ab3a137f..1a3dbc7bd 100644 --- a/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailActionsBar.tsx +++ b/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; import { diff --git a/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailDrawerContent.tsx b/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailDrawerContent.tsx index 07dbcafb8..d0b7d122d 100644 --- a/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailDrawerContent.tsx +++ b/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailDrawerContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DrawerBody } from '@/components'; diff --git a/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailDrawerProvider.tsx b/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailDrawerProvider.tsx index 3342df02e..46e3462af 100644 --- a/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailDrawerProvider.tsx +++ b/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailDrawerProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { DrawerHeaderContent, DrawerLoading } from '@/components'; diff --git a/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailFooter.tsx b/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailFooter.tsx index fa830ae71..fb1360c6d 100644 --- a/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailFooter.tsx +++ b/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { diff --git a/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailHeader.tsx b/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailHeader.tsx index c119deb6d..1bc44fbce 100644 --- a/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailHeader.tsx +++ b/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailTab.tsx b/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailTab.tsx index 5e78d5957..20a64e8a9 100644 --- a/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailTab.tsx +++ b/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailTab.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { CommercialDocBox } from '@/components'; diff --git a/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailTable.tsx b/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailTable.tsx index 388954412..fc9605148 100644 --- a/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailTable.tsx +++ b/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { CommercialDocEntriesTable } from '@/components'; diff --git a/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailTableFooter.tsx b/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailTableFooter.tsx index f8fe90f8c..69f512145 100644 --- a/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailTableFooter.tsx +++ b/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailTableFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/InvoiceDetailDrawer/InvoiceGLEntriesTable.tsx b/src/containers/Drawers/InvoiceDetailDrawer/InvoiceGLEntriesTable.tsx index e32853733..086df3472 100644 --- a/src/containers/Drawers/InvoiceDetailDrawer/InvoiceGLEntriesTable.tsx +++ b/src/containers/Drawers/InvoiceDetailDrawer/InvoiceGLEntriesTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/InvoiceDetailDrawer/InvoicePaymentTransactions/InvoicePaymentTransactionsTable.tsx b/src/containers/Drawers/InvoiceDetailDrawer/InvoicePaymentTransactions/InvoicePaymentTransactionsTable.tsx index 71409a937..99a31058a 100644 --- a/src/containers/Drawers/InvoiceDetailDrawer/InvoicePaymentTransactions/InvoicePaymentTransactionsTable.tsx +++ b/src/containers/Drawers/InvoiceDetailDrawer/InvoicePaymentTransactions/InvoicePaymentTransactionsTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; import { DataTable, Card, TableSkeletonRows } from '@/components'; diff --git a/src/containers/Drawers/InvoiceDetailDrawer/InvoicePaymentTransactions/components.tsx b/src/containers/Drawers/InvoiceDetailDrawer/InvoicePaymentTransactions/components.tsx index 9b388727d..e9fe8e7dd 100644 --- a/src/containers/Drawers/InvoiceDetailDrawer/InvoicePaymentTransactions/components.tsx +++ b/src/containers/Drawers/InvoiceDetailDrawer/InvoicePaymentTransactions/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import clsx from 'classnames'; diff --git a/src/containers/Drawers/InvoiceDetailDrawer/index.tsx b/src/containers/Drawers/InvoiceDetailDrawer/index.tsx index de696e6f4..30266868b 100644 --- a/src/containers/Drawers/InvoiceDetailDrawer/index.tsx +++ b/src/containers/Drawers/InvoiceDetailDrawer/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Drawer, DrawerSuspense } from '@/components'; import withDrawers from '@/containers/Drawer/withDrawers'; diff --git a/src/containers/Drawers/InvoiceDetailDrawer/utils.tsx b/src/containers/Drawers/InvoiceDetailDrawer/utils.tsx index a5b7ec07e..063c335eb 100644 --- a/src/containers/Drawers/InvoiceDetailDrawer/utils.tsx +++ b/src/containers/Drawers/InvoiceDetailDrawer/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemContentDetails.tsx b/src/containers/Drawers/ItemDetailDrawer/ItemContentDetails.tsx index e2044c0e1..54d68d2bf 100644 --- a/src/containers/Drawers/ItemDetailDrawer/ItemContentDetails.tsx +++ b/src/containers/Drawers/ItemDetailDrawer/ItemContentDetails.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import ItemDetailTab from './ItemDetailTab'; diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemDetailActionsBar.tsx b/src/containers/Drawers/ItemDetailDrawer/ItemDetailActionsBar.tsx index dbf2b9d02..0213e8509 100644 --- a/src/containers/Drawers/ItemDetailDrawer/ItemDetailActionsBar.tsx +++ b/src/containers/Drawers/ItemDetailDrawer/ItemDetailActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; import { diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemDetailDrawerContent.tsx b/src/containers/Drawers/ItemDetailDrawer/ItemDetailDrawerContent.tsx index 37867bc07..bafc0b347 100644 --- a/src/containers/Drawers/ItemDetailDrawer/ItemDetailDrawerContent.tsx +++ b/src/containers/Drawers/ItemDetailDrawer/ItemDetailDrawerContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import '@/style/components/Drawers/ItemDrawer.scss'; diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemDetailDrawerProvider.tsx b/src/containers/Drawers/ItemDetailDrawer/ItemDetailDrawerProvider.tsx index 9fa6d1dff..7e8e629b7 100644 --- a/src/containers/Drawers/ItemDetailDrawer/ItemDetailDrawerProvider.tsx +++ b/src/containers/Drawers/ItemDetailDrawer/ItemDetailDrawerProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DrawerHeaderContent, DrawerLoading } from '@/components'; import { useItem } from '@/hooks/query'; diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemDetailHeader.tsx b/src/containers/Drawers/ItemDetailDrawer/ItemDetailHeader.tsx index 335760e03..06b7ce5b4 100644 --- a/src/containers/Drawers/ItemDetailDrawer/ItemDetailHeader.tsx +++ b/src/containers/Drawers/ItemDetailDrawer/ItemDetailHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import classNames from 'classnames'; diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemDetailTab.tsx b/src/containers/Drawers/ItemDetailDrawer/ItemDetailTab.tsx index ec57121a6..f7f7109c4 100644 --- a/src/containers/Drawers/ItemDetailDrawer/ItemDetailTab.tsx +++ b/src/containers/Drawers/ItemDetailDrawer/ItemDetailTab.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Tab } from '@blueprintjs/core'; diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/BillPaymentTransactions/components.tsx b/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/BillPaymentTransactions/components.tsx index b57f509e7..5f5ad6106 100644 --- a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/BillPaymentTransactions/components.tsx +++ b/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/BillPaymentTransactions/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import clsx from 'classnames'; diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/BillPaymentTransactions/index.tsx b/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/BillPaymentTransactions/index.tsx index 445c1c9d8..875737599 100644 --- a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/BillPaymentTransactions/index.tsx +++ b/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/BillPaymentTransactions/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/EstimatePaymentTransactions/components.tsx b/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/EstimatePaymentTransactions/components.tsx index 6e6ca9fd6..08ddf152f 100644 --- a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/EstimatePaymentTransactions/components.tsx +++ b/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/EstimatePaymentTransactions/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Menu, MenuItem, MenuDivider } from '@blueprintjs/core'; diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/EstimatePaymentTransactions/index.tsx b/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/EstimatePaymentTransactions/index.tsx index b7eab9f0a..126b9ad6e 100644 --- a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/EstimatePaymentTransactions/index.tsx +++ b/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/EstimatePaymentTransactions/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/InvoicePaymentTransactions/components.tsx b/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/InvoicePaymentTransactions/components.tsx index c5e45f0c2..f5865892c 100644 --- a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/InvoicePaymentTransactions/components.tsx +++ b/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/InvoicePaymentTransactions/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Menu, MenuItem, MenuDivider } from '@blueprintjs/core'; diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/InvoicePaymentTransactions/index.tsx b/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/InvoicePaymentTransactions/index.tsx index cb9087bca..c8133878f 100644 --- a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/InvoicePaymentTransactions/index.tsx +++ b/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/InvoicePaymentTransactions/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/ItemPaymentTransactionContent.tsx b/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/ItemPaymentTransactionContent.tsx index dd8866f89..4338572fb 100644 --- a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/ItemPaymentTransactionContent.tsx +++ b/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/ItemPaymentTransactionContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import InvoicePaymentTransactions from './InvoicePaymentTransactions'; import EstimatePaymentTransactions from './EstimatePaymentTransactions'; diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/ReceiptPaymentTransactions/components.tsx b/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/ReceiptPaymentTransactions/components.tsx index 6247e1359..8e98ef08c 100644 --- a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/ReceiptPaymentTransactions/components.tsx +++ b/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/ReceiptPaymentTransactions/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Menu, MenuItem, MenuDivider } from '@blueprintjs/core'; diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/ReceiptPaymentTransactions/index.tsx b/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/ReceiptPaymentTransactions/index.tsx index c441fa6d0..65fa8ad8c 100644 --- a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/ReceiptPaymentTransactions/index.tsx +++ b/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/ReceiptPaymentTransactions/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/index.tsx b/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/index.tsx index d05f80b91..4fc0b4775 100644 --- a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/index.tsx +++ b/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/utils.tsx b/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/utils.tsx index bdcad71b0..4613a5d26 100644 --- a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/utils.tsx +++ b/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { diff --git a/src/containers/Drawers/ItemDetailDrawer/WarehousesLocations/components.tsx b/src/containers/Drawers/ItemDetailDrawer/WarehousesLocations/components.tsx index 876baf789..9a35cb340 100644 --- a/src/containers/Drawers/ItemDetailDrawer/WarehousesLocations/components.tsx +++ b/src/containers/Drawers/ItemDetailDrawer/WarehousesLocations/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { FormatNumberCell, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Drawers/ItemDetailDrawer/WarehousesLocations/index.tsx b/src/containers/Drawers/ItemDetailDrawer/WarehousesLocations/index.tsx index c19b50c60..8e23c9f18 100644 --- a/src/containers/Drawers/ItemDetailDrawer/WarehousesLocations/index.tsx +++ b/src/containers/Drawers/ItemDetailDrawer/WarehousesLocations/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/ItemDetailDrawer/index.tsx b/src/containers/Drawers/ItemDetailDrawer/index.tsx index 44ec1d4a6..6a0b82d94 100644 --- a/src/containers/Drawers/ItemDetailDrawer/index.tsx +++ b/src/containers/Drawers/ItemDetailDrawer/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Drawer, DrawerSuspense } from '@/components'; import withDrawers from '@/containers/Drawer/withDrawers'; diff --git a/src/containers/Drawers/ItemDetailDrawer/utlis.tsx b/src/containers/Drawers/ItemDetailDrawer/utlis.tsx index 691f6df20..db2777798 100644 --- a/src/containers/Drawers/ItemDetailDrawer/utlis.tsx +++ b/src/containers/Drawers/ItemDetailDrawer/utlis.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { Intent, Tag } from '@blueprintjs/core'; diff --git a/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerActionBar.tsx b/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerActionBar.tsx index 014915db6..7d23324c1 100644 --- a/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerActionBar.tsx +++ b/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerActionBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; import { diff --git a/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerContent.tsx b/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerContent.tsx index a1ded1c26..1ea56faed 100644 --- a/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerContent.tsx +++ b/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import '@/style/components/Drawers/ManualJournalDrawer.scss'; diff --git a/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerDetails.tsx b/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerDetails.tsx index 59f8c3f22..a7b559f00 100644 --- a/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerDetails.tsx +++ b/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerDetails.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerFooter.tsx b/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerFooter.tsx index d5db3a08e..70d9e4eb5 100644 --- a/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerFooter.tsx +++ b/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerHeader.tsx b/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerHeader.tsx index 4b0941a46..c3a9c1dac 100644 --- a/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerHeader.tsx +++ b/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { defaultTo } from 'lodash'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerProvider.tsx b/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerProvider.tsx index 919ca9f28..c103bc9dd 100644 --- a/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerProvider.tsx +++ b/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { useJournal } from '@/hooks/query'; diff --git a/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerTable.tsx b/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerTable.tsx index 7e37ff91d..71db42bb6 100644 --- a/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerTable.tsx +++ b/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { CommercialDocEntriesTable } from '@/components'; diff --git a/src/containers/Drawers/ManualJournalDrawer/index.tsx b/src/containers/Drawers/ManualJournalDrawer/index.tsx index e0249404d..3c44b1498 100644 --- a/src/containers/Drawers/ManualJournalDrawer/index.tsx +++ b/src/containers/Drawers/ManualJournalDrawer/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { lazy } from 'react'; import { Drawer, DrawerSuspense } from '@/components'; import withDrawers from '@/containers/Drawer/withDrawers'; diff --git a/src/containers/Drawers/ManualJournalDrawer/utils.tsx b/src/containers/Drawers/ManualJournalDrawer/utils.tsx index f31d0d15b..8ca521ed0 100644 --- a/src/containers/Drawers/ManualJournalDrawer/utils.tsx +++ b/src/containers/Drawers/ManualJournalDrawer/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; import React from 'react'; import { Tag, Intent } from '@blueprintjs/core'; diff --git a/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailActionsBar.tsx b/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailActionsBar.tsx index 7e2dc6394..2775cf76c 100644 --- a/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailActionsBar.tsx +++ b/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailContent.tsx b/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailContent.tsx index fab20b4c7..1dbae4c54 100644 --- a/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailContent.tsx +++ b/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DrawerBody } from '@/components'; diff --git a/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailFooter.tsx b/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailFooter.tsx index ff0edf55d..110670fed 100644 --- a/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailFooter.tsx +++ b/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { diff --git a/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailHeader.tsx b/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailHeader.tsx index 7da5be0fb..102f62b53 100644 --- a/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailHeader.tsx +++ b/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { defaultTo } from 'lodash'; diff --git a/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailProvider.tsx b/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailProvider.tsx index 25c30bd5a..668b3cdbf 100644 --- a/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailProvider.tsx +++ b/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { DrawerHeaderContent, DrawerLoading } from '@/components'; diff --git a/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailTab.tsx b/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailTab.tsx index d120803a1..23d4c3b87 100644 --- a/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailTab.tsx +++ b/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailTab.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { CommercialDocBox } from '@/components'; diff --git a/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailTable.tsx b/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailTable.tsx index 183863bf1..9d26fbbcf 100644 --- a/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailTable.tsx +++ b/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { CommercialDocEntriesTable } from '@/components'; diff --git a/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailTableFooter.tsx b/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailTableFooter.tsx index 471da0838..8efa22d45 100644 --- a/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailTableFooter.tsx +++ b/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailTableFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetails.tsx b/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetails.tsx index 50731f7df..c87bd761e 100644 --- a/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetails.tsx +++ b/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetails.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeGLEntriesPanel.tsx b/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeGLEntriesPanel.tsx index 8f8c6a2c9..1c8daba70 100644 --- a/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeGLEntriesPanel.tsx +++ b/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeGLEntriesPanel.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/PaymentMadeDetailDrawer/index.tsx b/src/containers/Drawers/PaymentMadeDetailDrawer/index.tsx index 3bc889f81..d99dbf1c1 100644 --- a/src/containers/Drawers/PaymentMadeDetailDrawer/index.tsx +++ b/src/containers/Drawers/PaymentMadeDetailDrawer/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Drawer, DrawerSuspense } from '@/components'; import withDrawers from '@/containers/Drawer/withDrawers'; diff --git a/src/containers/Drawers/PaymentMadeDetailDrawer/utils.tsx b/src/containers/Drawers/PaymentMadeDetailDrawer/utils.tsx index 43d20665e..4721e88c4 100644 --- a/src/containers/Drawers/PaymentMadeDetailDrawer/utils.tsx +++ b/src/containers/Drawers/PaymentMadeDetailDrawer/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import moment from 'moment'; diff --git a/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveActionsBar.tsx b/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveActionsBar.tsx index aab114903..62aa88cc5 100644 --- a/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveActionsBar.tsx +++ b/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; import { diff --git a/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetail.tsx b/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetail.tsx index 70f1dbd76..2cccc7c3f 100644 --- a/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetail.tsx +++ b/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetail.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailContent.tsx b/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailContent.tsx index 57c514749..93d582228 100644 --- a/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailContent.tsx +++ b/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DrawerBody } from '@/components'; diff --git a/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailFooter.tsx b/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailFooter.tsx index 9fa76993b..019023174 100644 --- a/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailFooter.tsx +++ b/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { diff --git a/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailHeader.tsx b/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailHeader.tsx index dad4213e8..f6d273b4f 100644 --- a/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailHeader.tsx +++ b/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { defaultTo } from 'lodash'; diff --git a/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailProvider.tsx b/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailProvider.tsx index c3373a212..8f169944b 100644 --- a/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailProvider.tsx +++ b/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { DrawerHeaderContent, DrawerLoading } from '@/components'; diff --git a/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailTab.tsx b/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailTab.tsx index d4235c643..8dab1a377 100644 --- a/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailTab.tsx +++ b/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailTab.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailTable.tsx b/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailTable.tsx index c4b65b833..e9a6f0401 100644 --- a/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailTable.tsx +++ b/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { CommercialDocEntriesTable } from '@/components'; diff --git a/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailTableFooter.tsx b/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailTableFooter.tsx index 7007ce328..eeee13ffe 100644 --- a/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailTableFooter.tsx +++ b/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailTableFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveGLEntriesPanel.tsx b/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveGLEntriesPanel.tsx index 6ae2c73e4..b7b6a6bc7 100644 --- a/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveGLEntriesPanel.tsx +++ b/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveGLEntriesPanel.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/PaymentReceiveDetailDrawer/index.tsx b/src/containers/Drawers/PaymentReceiveDetailDrawer/index.tsx index 2fb2cf91d..cb6400043 100644 --- a/src/containers/Drawers/PaymentReceiveDetailDrawer/index.tsx +++ b/src/containers/Drawers/PaymentReceiveDetailDrawer/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Drawer, DrawerSuspense } from '@/components'; import withDrawers from '@/containers/Drawer/withDrawers'; diff --git a/src/containers/Drawers/PaymentReceiveDetailDrawer/utils.tsx b/src/containers/Drawers/PaymentReceiveDetailDrawer/utils.tsx index 5c12c3328..c0fda5844 100644 --- a/src/containers/Drawers/PaymentReceiveDetailDrawer/utils.tsx +++ b/src/containers/Drawers/PaymentReceiveDetailDrawer/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import moment from 'moment'; diff --git a/src/containers/Drawers/QuickCreateCustomerDrawer/QuickCreateCustomerDrawerContent.tsx b/src/containers/Drawers/QuickCreateCustomerDrawer/QuickCreateCustomerDrawerContent.tsx index cdb3c162b..970a85412 100644 --- a/src/containers/Drawers/QuickCreateCustomerDrawer/QuickCreateCustomerDrawerContent.tsx +++ b/src/containers/Drawers/QuickCreateCustomerDrawer/QuickCreateCustomerDrawerContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DrawerHeaderContent, diff --git a/src/containers/Drawers/QuickCreateCustomerDrawer/QuickCustomerFormDrawer.tsx b/src/containers/Drawers/QuickCreateCustomerDrawer/QuickCustomerFormDrawer.tsx index 161c8b5fa..cfc42d1d6 100644 --- a/src/containers/Drawers/QuickCreateCustomerDrawer/QuickCustomerFormDrawer.tsx +++ b/src/containers/Drawers/QuickCreateCustomerDrawer/QuickCustomerFormDrawer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as R from 'ramda'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/QuickCreateCustomerDrawer/index.tsx b/src/containers/Drawers/QuickCreateCustomerDrawer/index.tsx index 56d7f80c4..f172cca85 100644 --- a/src/containers/Drawers/QuickCreateCustomerDrawer/index.tsx +++ b/src/containers/Drawers/QuickCreateCustomerDrawer/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Drawer, DrawerSuspense } from '@/components'; import withDrawers from '@/containers/Drawer/withDrawers'; diff --git a/src/containers/Drawers/QuickCreateItemDrawer/QuickCreateItemDrawerContent.tsx b/src/containers/Drawers/QuickCreateItemDrawer/QuickCreateItemDrawerContent.tsx index 169d7ce2a..66f5d4dfc 100644 --- a/src/containers/Drawers/QuickCreateItemDrawer/QuickCreateItemDrawerContent.tsx +++ b/src/containers/Drawers/QuickCreateItemDrawer/QuickCreateItemDrawerContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DrawerHeaderContent, diff --git a/src/containers/Drawers/QuickCreateItemDrawer/QuickCreateItemDrawerForm.tsx b/src/containers/Drawers/QuickCreateItemDrawer/QuickCreateItemDrawerForm.tsx index f32358606..c6f62736d 100644 --- a/src/containers/Drawers/QuickCreateItemDrawer/QuickCreateItemDrawerForm.tsx +++ b/src/containers/Drawers/QuickCreateItemDrawer/QuickCreateItemDrawerForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as R from 'ramda'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/QuickCreateItemDrawer/index.tsx b/src/containers/Drawers/QuickCreateItemDrawer/index.tsx index 446fb351d..f01793ea2 100644 --- a/src/containers/Drawers/QuickCreateItemDrawer/index.tsx +++ b/src/containers/Drawers/QuickCreateItemDrawer/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Drawer, DrawerSuspense } from '@/components'; import withDrawers from '@/containers/Drawer/withDrawers'; diff --git a/src/containers/Drawers/QuickWriteVendorDrawer/QuickVendorFormDrawer.tsx b/src/containers/Drawers/QuickWriteVendorDrawer/QuickVendorFormDrawer.tsx index 19a9d0d1f..8ff67a619 100644 --- a/src/containers/Drawers/QuickWriteVendorDrawer/QuickVendorFormDrawer.tsx +++ b/src/containers/Drawers/QuickWriteVendorDrawer/QuickVendorFormDrawer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as R from 'ramda'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/QuickWriteVendorDrawer/QuickWriteVendorDrawerContent.tsx b/src/containers/Drawers/QuickWriteVendorDrawer/QuickWriteVendorDrawerContent.tsx index 1bf077117..48aaf7c04 100644 --- a/src/containers/Drawers/QuickWriteVendorDrawer/QuickWriteVendorDrawerContent.tsx +++ b/src/containers/Drawers/QuickWriteVendorDrawer/QuickWriteVendorDrawerContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DrawerHeaderContent, diff --git a/src/containers/Drawers/QuickWriteVendorDrawer/index.tsx b/src/containers/Drawers/QuickWriteVendorDrawer/index.tsx index a503454c8..4bad7da75 100644 --- a/src/containers/Drawers/QuickWriteVendorDrawer/index.tsx +++ b/src/containers/Drawers/QuickWriteVendorDrawer/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as R from 'ramda'; diff --git a/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetail.tsx b/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetail.tsx index bb323e366..d9bd74f23 100644 --- a/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetail.tsx +++ b/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetail.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailActionBar.tsx b/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailActionBar.tsx index 2ca3e1885..496dfb385 100644 --- a/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailActionBar.tsx +++ b/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailActionBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailDrawerContent.tsx b/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailDrawerContent.tsx index bb6e9a415..6d4eed24a 100644 --- a/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailDrawerContent.tsx +++ b/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailDrawerContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DrawerBody } from '@/components'; diff --git a/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailDrawerProvider.tsx b/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailDrawerProvider.tsx index 151a06cce..20e4887d4 100644 --- a/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailDrawerProvider.tsx +++ b/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailDrawerProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { DrawerHeaderContent, DrawerLoading } from '@/components'; diff --git a/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailFooter.tsx b/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailFooter.tsx index 6d55721fe..8b7b1d859 100644 --- a/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailFooter.tsx +++ b/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { CommercialDocFooter, diff --git a/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailHeader.tsx b/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailHeader.tsx index 59ff593ba..2d350f660 100644 --- a/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailHeader.tsx +++ b/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailTab.tsx b/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailTab.tsx index c81215c36..42f2ac7d9 100644 --- a/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailTab.tsx +++ b/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailTab.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailTable.tsx b/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailTable.tsx index 7311ebd9c..38d886a45 100644 --- a/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailTable.tsx +++ b/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { CommercialDocEntriesTable } from '@/components'; diff --git a/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailTableFooter.tsx b/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailTableFooter.tsx index 4c24f5eef..56ee5c87b 100644 --- a/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailTableFooter.tsx +++ b/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailTableFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailsGLEntriesPanel.tsx b/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailsGLEntriesPanel.tsx index 4a8a6777f..354879efa 100644 --- a/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailsGLEntriesPanel.tsx +++ b/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailsGLEntriesPanel.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/ReceiptDetailDrawer/components.tsx b/src/containers/Drawers/ReceiptDetailDrawer/components.tsx index 815fd02fe..d92348e55 100644 --- a/src/containers/Drawers/ReceiptDetailDrawer/components.tsx +++ b/src/containers/Drawers/ReceiptDetailDrawer/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, diff --git a/src/containers/Drawers/ReceiptDetailDrawer/index.tsx b/src/containers/Drawers/ReceiptDetailDrawer/index.tsx index 48c31aa6d..fd4d604de 100644 --- a/src/containers/Drawers/ReceiptDetailDrawer/index.tsx +++ b/src/containers/Drawers/ReceiptDetailDrawer/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Drawer, DrawerSuspense } from '@/components'; import withDrawers from '@/containers/Drawer/withDrawers'; diff --git a/src/containers/Drawers/ReceiptDetailDrawer/utils.tsx b/src/containers/Drawers/ReceiptDetailDrawer/utils.tsx index 6b13ddfb8..cf48f1d9a 100644 --- a/src/containers/Drawers/ReceiptDetailDrawer/utils.tsx +++ b/src/containers/Drawers/ReceiptDetailDrawer/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { getColumnWidth } from '@/utils'; diff --git a/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDetail.tsx b/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDetail.tsx index 1820b6047..36bb3602d 100644 --- a/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDetail.tsx +++ b/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDetail.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDetailActionsBar.tsx b/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDetailActionsBar.tsx index 2ad6cd422..8197bfb67 100644 --- a/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDetailActionsBar.tsx +++ b/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDetailActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, NavbarGroup, Classes, Intent } from '@blueprintjs/core'; diff --git a/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDetailHeader.tsx b/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDetailHeader.tsx index 5eb8167ba..40498d2e9 100644 --- a/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDetailHeader.tsx +++ b/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDetailHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { defaultTo } from 'lodash'; diff --git a/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDetailTab.tsx b/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDetailTab.tsx index d85ca9c3d..9eaca6638 100644 --- a/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDetailTab.tsx +++ b/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDetailTab.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { CommercialDocBox } from '@/components'; diff --git a/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDrawerContent.tsx b/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDrawerContent.tsx index 4efc6edc6..32dc4fc0a 100644 --- a/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDrawerContent.tsx +++ b/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDrawerContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DrawerBody } from '@/components'; diff --git a/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDrawerProvider.tsx b/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDrawerProvider.tsx index 9e15ed1fb..71449a4cd 100644 --- a/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDrawerProvider.tsx +++ b/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDrawerProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { DrawerHeaderContent, DrawerLoading } from '@/components'; diff --git a/src/containers/Drawers/RefundCreditNoteDetailDrawer/index.tsx b/src/containers/Drawers/RefundCreditNoteDetailDrawer/index.tsx index f7e872792..c9b28a907 100644 --- a/src/containers/Drawers/RefundCreditNoteDetailDrawer/index.tsx +++ b/src/containers/Drawers/RefundCreditNoteDetailDrawer/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Drawer, DrawerSuspense } from '@/components'; diff --git a/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDetail.tsx b/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDetail.tsx index e0ca7daa4..ec31d64ed 100644 --- a/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDetail.tsx +++ b/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDetail.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDetailActionsBar.tsx b/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDetailActionsBar.tsx index 11d7e0409..5ee1190ab 100644 --- a/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDetailActionsBar.tsx +++ b/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDetailActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, NavbarGroup, Classes, Intent } from '@blueprintjs/core'; diff --git a/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDetailHeader.tsx b/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDetailHeader.tsx index efc0a00ec..5724d60c6 100644 --- a/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDetailHeader.tsx +++ b/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDetailHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { defaultTo } from 'lodash'; diff --git a/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDetailTab.tsx b/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDetailTab.tsx index cb01ffb6c..d7cde8c8a 100644 --- a/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDetailTab.tsx +++ b/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDetailTab.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { CommercialDocBox } from '@/components'; diff --git a/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDrawerContent.tsx b/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDrawerContent.tsx index 061aa38e1..45639cb80 100644 --- a/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDrawerContent.tsx +++ b/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDrawerContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DrawerBody } from '@/components'; diff --git a/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDrawerProvider.tsx b/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDrawerProvider.tsx index 04993c6d4..be077039e 100644 --- a/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDrawerProvider.tsx +++ b/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDrawerProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { DrawerHeaderContent, DrawerLoading } from '@/components'; diff --git a/src/containers/Drawers/RefundVendorCreditDetailDrawer/index.tsx b/src/containers/Drawers/RefundVendorCreditDetailDrawer/index.tsx index 1fc596fab..0f6031535 100644 --- a/src/containers/Drawers/RefundVendorCreditDetailDrawer/index.tsx +++ b/src/containers/Drawers/RefundVendorCreditDetailDrawer/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Drawer, DrawerSuspense } from '@/components'; diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/JournalEntriesTransactions/JournalEntriesTransactionsTable.tsx b/src/containers/Drawers/VendorCreditDetailDrawer/JournalEntriesTransactions/JournalEntriesTransactionsTable.tsx index f798425df..060aebe02 100644 --- a/src/containers/Drawers/VendorCreditDetailDrawer/JournalEntriesTransactions/JournalEntriesTransactionsTable.tsx +++ b/src/containers/Drawers/VendorCreditDetailDrawer/JournalEntriesTransactions/JournalEntriesTransactionsTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Card } from '@/components'; diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/JournalEntriesTransactions/components.tsx b/src/containers/Drawers/VendorCreditDetailDrawer/JournalEntriesTransactions/components.tsx index 77df0e5b7..247d21a46 100644 --- a/src/containers/Drawers/VendorCreditDetailDrawer/JournalEntriesTransactions/components.tsx +++ b/src/containers/Drawers/VendorCreditDetailDrawer/JournalEntriesTransactions/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { FormatDateCell } from '@/components'; diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/ReconcileVendorCreditTransactions/ReconcileVendorCreditTransactionsTable.tsx b/src/containers/Drawers/VendorCreditDetailDrawer/ReconcileVendorCreditTransactions/ReconcileVendorCreditTransactionsTable.tsx index 330531860..ae26e7f51 100644 --- a/src/containers/Drawers/VendorCreditDetailDrawer/ReconcileVendorCreditTransactions/ReconcileVendorCreditTransactionsTable.tsx +++ b/src/containers/Drawers/VendorCreditDetailDrawer/ReconcileVendorCreditTransactions/ReconcileVendorCreditTransactionsTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DataTable, Card } from '@/components'; diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/ReconcileVendorCreditTransactions/components.tsx b/src/containers/Drawers/VendorCreditDetailDrawer/ReconcileVendorCreditTransactions/components.tsx index 7e88a36ea..a04aee918 100644 --- a/src/containers/Drawers/VendorCreditDetailDrawer/ReconcileVendorCreditTransactions/components.tsx +++ b/src/containers/Drawers/VendorCreditDetailDrawer/ReconcileVendorCreditTransactions/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, MenuItem, Menu } from '@blueprintjs/core'; diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/RefundVendorCreditTransactions/RefundVendorCreditTransactionsTable.tsx b/src/containers/Drawers/VendorCreditDetailDrawer/RefundVendorCreditTransactions/RefundVendorCreditTransactionsTable.tsx index 9a3668db6..bfd8ee533 100644 --- a/src/containers/Drawers/VendorCreditDetailDrawer/RefundVendorCreditTransactions/RefundVendorCreditTransactionsTable.tsx +++ b/src/containers/Drawers/VendorCreditDetailDrawer/RefundVendorCreditTransactions/RefundVendorCreditTransactionsTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DataTable, Card } from '@/components'; diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/RefundVendorCreditTransactions/components.tsx b/src/containers/Drawers/VendorCreditDetailDrawer/RefundVendorCreditTransactions/components.tsx index a0244c0af..f01343db8 100644 --- a/src/containers/Drawers/VendorCreditDetailDrawer/RefundVendorCreditTransactions/components.tsx +++ b/src/containers/Drawers/VendorCreditDetailDrawer/RefundVendorCreditTransactions/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, MenuItem, Menu } from '@blueprintjs/core'; diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetail.tsx b/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetail.tsx index 3b2521835..b32dea399 100644 --- a/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetail.tsx +++ b/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetail.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailActionsBar.tsx b/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailActionsBar.tsx index e51206dd3..3f56a2fb5 100644 --- a/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailActionsBar.tsx +++ b/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailDrawerContent.tsx b/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailDrawerContent.tsx index b6b6b80dc..d443eb321 100644 --- a/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailDrawerContent.tsx +++ b/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailDrawerContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DrawerBody } from '@/components'; diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailDrawerFooter.tsx b/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailDrawerFooter.tsx index 61fa0ec4a..42fd4eb60 100644 --- a/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailDrawerFooter.tsx +++ b/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailDrawerFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailDrawerProvider.tsx b/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailDrawerProvider.tsx index 68fb22f65..c53ae707c 100644 --- a/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailDrawerProvider.tsx +++ b/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailDrawerProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailFooter.tsx b/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailFooter.tsx index e82dca618..c698b04a6 100644 --- a/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailFooter.tsx +++ b/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { CommercialDocFooter, diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailHeader.tsx b/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailHeader.tsx index 32403e31b..8045da828 100644 --- a/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailHeader.tsx +++ b/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailPanel.tsx b/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailPanel.tsx index e932a4586..49d84bcbd 100644 --- a/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailPanel.tsx +++ b/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailPanel.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { CommercialDocBox } from '@/components'; diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailTable.tsx b/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailTable.tsx index 39420973e..74823af9c 100644 --- a/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailTable.tsx +++ b/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { CommercialDocEntriesTable } from '@/components'; diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/index.tsx b/src/containers/Drawers/VendorCreditDetailDrawer/index.tsx index f13ace8dc..142afe413 100644 --- a/src/containers/Drawers/VendorCreditDetailDrawer/index.tsx +++ b/src/containers/Drawers/VendorCreditDetailDrawer/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Drawer, DrawerSuspense } from '@/components'; import withDrawers from '@/containers/Drawer/withDrawers'; diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/utils.tsx b/src/containers/Drawers/VendorCreditDetailDrawer/utils.tsx index 5151595f6..70c8ae735 100644 --- a/src/containers/Drawers/VendorCreditDetailDrawer/utils.tsx +++ b/src/containers/Drawers/VendorCreditDetailDrawer/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { diff --git a/src/containers/Drawers/VendorDetailsDrawer/VendorDetails.tsx b/src/containers/Drawers/VendorDetailsDrawer/VendorDetails.tsx index b0608c730..e2d15f1ff 100644 --- a/src/containers/Drawers/VendorDetailsDrawer/VendorDetails.tsx +++ b/src/containers/Drawers/VendorDetailsDrawer/VendorDetails.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import clsx from 'classnames'; diff --git a/src/containers/Drawers/VendorDetailsDrawer/VendorDetailsActionsBar.tsx b/src/containers/Drawers/VendorDetailsDrawer/VendorDetailsActionsBar.tsx index d160e40e6..5aaad1186 100644 --- a/src/containers/Drawers/VendorDetailsDrawer/VendorDetailsActionsBar.tsx +++ b/src/containers/Drawers/VendorDetailsDrawer/VendorDetailsActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; import { diff --git a/src/containers/Drawers/VendorDetailsDrawer/VendorDetailsDrawerContent.tsx b/src/containers/Drawers/VendorDetailsDrawer/VendorDetailsDrawerContent.tsx index 89c28412d..ad5e4a837 100644 --- a/src/containers/Drawers/VendorDetailsDrawer/VendorDetailsDrawerContent.tsx +++ b/src/containers/Drawers/VendorDetailsDrawer/VendorDetailsDrawerContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { VendorDetailsDrawerProvider } from './VendorDetailsDrawerProvider'; diff --git a/src/containers/Drawers/VendorDetailsDrawer/VendorDetailsDrawerProvider.tsx b/src/containers/Drawers/VendorDetailsDrawer/VendorDetailsDrawerProvider.tsx index 96ae84597..086fbd625 100644 --- a/src/containers/Drawers/VendorDetailsDrawer/VendorDetailsDrawerProvider.tsx +++ b/src/containers/Drawers/VendorDetailsDrawer/VendorDetailsDrawerProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DrawerHeaderContent, DrawerLoading } from '@/components'; import { useVendor } from '@/hooks/query'; diff --git a/src/containers/Drawers/VendorDetailsDrawer/VendorDetailsHeader.tsx b/src/containers/Drawers/VendorDetailsDrawer/VendorDetailsHeader.tsx index d8b52055e..d40fb8449 100644 --- a/src/containers/Drawers/VendorDetailsDrawer/VendorDetailsHeader.tsx +++ b/src/containers/Drawers/VendorDetailsDrawer/VendorDetailsHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import clsx from 'classnames'; diff --git a/src/containers/Drawers/VendorDetailsDrawer/index.tsx b/src/containers/Drawers/VendorDetailsDrawer/index.tsx index 5f587976b..335a8426a 100644 --- a/src/containers/Drawers/VendorDetailsDrawer/index.tsx +++ b/src/containers/Drawers/VendorDetailsDrawer/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Drawer, DrawerSuspense } from '@/components'; import withDrawers from '@/containers/Drawer/withDrawers'; diff --git a/src/containers/Drawers/VendorDetailsDrawer/utils.tsx b/src/containers/Drawers/VendorDetailsDrawer/utils.tsx index 9be9eff1f..1cf755925 100644 --- a/src/containers/Drawers/VendorDetailsDrawer/utils.tsx +++ b/src/containers/Drawers/VendorDetailsDrawer/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, diff --git a/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetail.tsx b/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetail.tsx index efcf58696..ecb0dcdb4 100644 --- a/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetail.tsx +++ b/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetail.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailActionsBar.tsx b/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailActionsBar.tsx index e7b1c6da7..a1522cb08 100644 --- a/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailActionsBar.tsx +++ b/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; import { diff --git a/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailDrawerContent.tsx b/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailDrawerContent.tsx index aa99c2572..74451b2fd 100644 --- a/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailDrawerContent.tsx +++ b/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailDrawerContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DrawerBody } from '@/components'; diff --git a/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailDrawerProvider.tsx b/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailDrawerProvider.tsx index 7c97004a3..98049a5e0 100644 --- a/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailDrawerProvider.tsx +++ b/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailDrawerProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { useWarehouseTransfer } from '@/hooks/query'; diff --git a/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailHeader.tsx b/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailHeader.tsx index 862481b30..1bd3972f6 100644 --- a/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailHeader.tsx +++ b/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailPanel.tsx b/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailPanel.tsx index 700ca8d2f..3ff6ee056 100644 --- a/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailPanel.tsx +++ b/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailPanel.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { CommercialDocBox } from '@/components'; diff --git a/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailTable.tsx b/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailTable.tsx index 73aa6be28..4be518b7a 100644 --- a/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailTable.tsx +++ b/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { TableStyle } from '@/constants'; diff --git a/src/containers/Drawers/WarehouseTransferDetailDrawer/index.tsx b/src/containers/Drawers/WarehouseTransferDetailDrawer/index.tsx index c6fd86e8c..8eb85d54f 100644 --- a/src/containers/Drawers/WarehouseTransferDetailDrawer/index.tsx +++ b/src/containers/Drawers/WarehouseTransferDetailDrawer/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Drawer, DrawerSuspense } from '@/components'; import withDrawers from '@/containers/Drawer/withDrawers'; diff --git a/src/containers/Drawers/WarehouseTransferDetailDrawer/utils.tsx b/src/containers/Drawers/WarehouseTransferDetailDrawer/utils.tsx index ff0b97de7..8be1e55c2 100644 --- a/src/containers/Drawers/WarehouseTransferDetailDrawer/utils.tsx +++ b/src/containers/Drawers/WarehouseTransferDetailDrawer/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Tag } from '@blueprintjs/core'; diff --git a/src/containers/Drawers/components.tsx b/src/containers/Drawers/components.tsx index 6e16a50fb..894ff6a2d 100644 --- a/src/containers/Drawers/components.tsx +++ b/src/containers/Drawers/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import { Icon, If, Money } from '@/components'; diff --git a/src/containers/Entries/ItemsEntriesTable.tsx b/src/containers/Entries/ItemsEntriesTable.tsx index b13b21dec..6b51f8566 100644 --- a/src/containers/Entries/ItemsEntriesTable.tsx +++ b/src/containers/Entries/ItemsEntriesTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect, useCallback } from 'react'; import classNames from 'classnames'; diff --git a/src/containers/Entries/components.tsx b/src/containers/Entries/components.tsx index 0213651e7..87713042e 100644 --- a/src/containers/Entries/components.tsx +++ b/src/containers/Entries/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { MenuItem, Menu, Button, Position } from '@blueprintjs/core'; diff --git a/src/containers/Entries/utils.tsx b/src/containers/Entries/utils.tsx index 7f2c59b66..6c8f8b01e 100644 --- a/src/containers/Entries/utils.tsx +++ b/src/containers/Entries/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as R from 'ramda'; import { sumBy, isEmpty, last } from 'lodash'; diff --git a/src/containers/ExchangeRates/ExchangeRateActionsBar.tsx b/src/containers/ExchangeRates/ExchangeRateActionsBar.tsx index 9759942c3..e2fadd8b4 100644 --- a/src/containers/ExchangeRates/ExchangeRateActionsBar.tsx +++ b/src/containers/ExchangeRates/ExchangeRateActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback, useState, useMemo } from 'react'; import intl from 'react-intl-universal'; import classNames from 'classnames'; diff --git a/src/containers/ExchangeRates/ExchangeRateTable.tsx b/src/containers/ExchangeRates/ExchangeRateTable.tsx index 1e7f0c917..f595a26f5 100644 --- a/src/containers/ExchangeRates/ExchangeRateTable.tsx +++ b/src/containers/ExchangeRates/ExchangeRateTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import { diff --git a/src/containers/ExchangeRates/ExchangeRatesAlerts.tsx b/src/containers/ExchangeRates/ExchangeRatesAlerts.tsx index d6cd9e0b7..7ebae78c7 100644 --- a/src/containers/ExchangeRates/ExchangeRatesAlerts.tsx +++ b/src/containers/ExchangeRates/ExchangeRatesAlerts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; const ExchangeRateDeleteAlert = React.lazy( diff --git a/src/containers/ExchangeRates/ExchangeRatesList.tsx b/src/containers/ExchangeRates/ExchangeRatesList.tsx index 737aa0222..3f4b75ce2 100644 --- a/src/containers/ExchangeRates/ExchangeRatesList.tsx +++ b/src/containers/ExchangeRates/ExchangeRatesList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DashboardContentTable, DashboardPageContent } from '@/components'; diff --git a/src/containers/ExchangeRates/ExchangeRatesProvider.tsx b/src/containers/ExchangeRates/ExchangeRatesProvider.tsx index 0a9d7629a..8d1175cdc 100644 --- a/src/containers/ExchangeRates/ExchangeRatesProvider.tsx +++ b/src/containers/ExchangeRates/ExchangeRatesProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext } from 'react'; import { transformTableQueryToParams } from '@/utils'; diff --git a/src/containers/ExchangeRates/components.tsx b/src/containers/ExchangeRates/components.tsx index 4780c6ca5..2bf08f2f0 100644 --- a/src/containers/ExchangeRates/components.tsx +++ b/src/containers/ExchangeRates/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import moment from 'moment'; import intl from 'react-intl-universal'; diff --git a/src/containers/ExchangeRates/withExchangeRateDetail.tsx b/src/containers/ExchangeRates/withExchangeRateDetail.tsx index 668356c34..dc787259d 100644 --- a/src/containers/ExchangeRates/withExchangeRateDetail.tsx +++ b/src/containers/ExchangeRates/withExchangeRateDetail.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getExchangeRateById } from '@/store/ExchangeRate/exchange.selector'; diff --git a/src/containers/ExchangeRates/withExchangeRates.tsx b/src/containers/ExchangeRates/withExchangeRates.tsx index 339e66242..5636c5c25 100644 --- a/src/containers/ExchangeRates/withExchangeRates.tsx +++ b/src/containers/ExchangeRates/withExchangeRates.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getExchangeRatesTableStateFactory } from '@/store/ExchangeRate/exchange.selector'; diff --git a/src/containers/ExchangeRates/withExchangeRatesActions.tsx b/src/containers/ExchangeRates/withExchangeRatesActions.tsx index 36939b381..86ddd4453 100644 --- a/src/containers/ExchangeRates/withExchangeRatesActions.tsx +++ b/src/containers/ExchangeRates/withExchangeRatesActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { setExchangeRateTableState } from '@/store/ExchangeRate/exchange.actions'; diff --git a/src/containers/Expenses/ExpenseForm/ExpenseFloatingActions.tsx b/src/containers/Expenses/ExpenseForm/ExpenseFloatingActions.tsx index a881cf883..954c8cf30 100644 --- a/src/containers/Expenses/ExpenseForm/ExpenseFloatingActions.tsx +++ b/src/containers/Expenses/ExpenseForm/ExpenseFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, diff --git a/src/containers/Expenses/ExpenseForm/ExpenseForm.schema.tsx b/src/containers/Expenses/ExpenseForm/ExpenseForm.schema.tsx index 3f12128f9..f62b78a2f 100644 --- a/src/containers/Expenses/ExpenseForm/ExpenseForm.schema.tsx +++ b/src/containers/Expenses/ExpenseForm/ExpenseForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; import { DATATYPES_LENGTH } from '@/constants/dataTypes'; diff --git a/src/containers/Expenses/ExpenseForm/ExpenseForm.tsx b/src/containers/Expenses/ExpenseForm/ExpenseForm.tsx index fc650a7eb..b8e3602b9 100644 --- a/src/containers/Expenses/ExpenseForm/ExpenseForm.tsx +++ b/src/containers/Expenses/ExpenseForm/ExpenseForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import intl from 'react-intl-universal'; import classNames from 'classnames'; diff --git a/src/containers/Expenses/ExpenseForm/ExpenseFormBody.tsx b/src/containers/Expenses/ExpenseForm/ExpenseFormBody.tsx index b99047c52..fa6716a2e 100644 --- a/src/containers/Expenses/ExpenseForm/ExpenseFormBody.tsx +++ b/src/containers/Expenses/ExpenseForm/ExpenseFormBody.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import { CLASSES } from '@/constants/classes'; diff --git a/src/containers/Expenses/ExpenseForm/ExpenseFormEntriesField.tsx b/src/containers/Expenses/ExpenseForm/ExpenseFormEntriesField.tsx index ac67ff2a7..7fe23d398 100644 --- a/src/containers/Expenses/ExpenseForm/ExpenseFormEntriesField.tsx +++ b/src/containers/Expenses/ExpenseForm/ExpenseFormEntriesField.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { FastField } from 'formik'; import React from 'react'; import ExpenseFormEntriesTable from './ExpenseFormEntriesTable'; diff --git a/src/containers/Expenses/ExpenseForm/ExpenseFormEntriesTable.tsx b/src/containers/Expenses/ExpenseForm/ExpenseFormEntriesTable.tsx index b242bbc49..9fb4bac88 100644 --- a/src/containers/Expenses/ExpenseForm/ExpenseFormEntriesTable.tsx +++ b/src/containers/Expenses/ExpenseForm/ExpenseFormEntriesTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import { DataTableEditable } from '@/components'; diff --git a/src/containers/Expenses/ExpenseForm/ExpenseFormFooter.tsx b/src/containers/Expenses/ExpenseForm/ExpenseFormFooter.tsx index 2faf2486e..e3f0d2027 100644 --- a/src/containers/Expenses/ExpenseForm/ExpenseFormFooter.tsx +++ b/src/containers/Expenses/ExpenseForm/ExpenseFormFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import styled from 'styled-components'; diff --git a/src/containers/Expenses/ExpenseForm/ExpenseFormFooterLeft.tsx b/src/containers/Expenses/ExpenseForm/ExpenseFormFooterLeft.tsx index 64f738bde..4104fecb4 100644 --- a/src/containers/Expenses/ExpenseForm/ExpenseFormFooterLeft.tsx +++ b/src/containers/Expenses/ExpenseForm/ExpenseFormFooterLeft.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { FFormGroup, FEditableText, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Expenses/ExpenseForm/ExpenseFormFooterRight.tsx b/src/containers/Expenses/ExpenseForm/ExpenseFormFooterRight.tsx index bd386de68..31b1172d5 100644 --- a/src/containers/Expenses/ExpenseForm/ExpenseFormFooterRight.tsx +++ b/src/containers/Expenses/ExpenseForm/ExpenseFormFooterRight.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { diff --git a/src/containers/Expenses/ExpenseForm/ExpenseFormHeader.tsx b/src/containers/Expenses/ExpenseForm/ExpenseFormHeader.tsx index 5fadd3ca6..97dbd2399 100644 --- a/src/containers/Expenses/ExpenseForm/ExpenseFormHeader.tsx +++ b/src/containers/Expenses/ExpenseForm/ExpenseFormHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import classNames from 'classnames'; import { sumBy } from 'lodash'; diff --git a/src/containers/Expenses/ExpenseForm/ExpenseFormHeaderFields.tsx b/src/containers/Expenses/ExpenseForm/ExpenseFormHeaderFields.tsx index c827ee01a..3df48fc40 100644 --- a/src/containers/Expenses/ExpenseForm/ExpenseFormHeaderFields.tsx +++ b/src/containers/Expenses/ExpenseForm/ExpenseFormHeaderFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { InputGroup, FormGroup, Position, Classes } from '@blueprintjs/core'; import { DateInput } from '@blueprintjs/datetime'; diff --git a/src/containers/Expenses/ExpenseForm/ExpenseFormPage.tsx b/src/containers/Expenses/ExpenseForm/ExpenseFormPage.tsx index 4e2e341cd..b9eb7dec1 100644 --- a/src/containers/Expenses/ExpenseForm/ExpenseFormPage.tsx +++ b/src/containers/Expenses/ExpenseForm/ExpenseFormPage.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useParams } from 'react-router-dom'; diff --git a/src/containers/Expenses/ExpenseForm/ExpenseFormPageProvider.tsx b/src/containers/Expenses/ExpenseForm/ExpenseFormPageProvider.tsx index 4ec0793e9..0953548e3 100644 --- a/src/containers/Expenses/ExpenseForm/ExpenseFormPageProvider.tsx +++ b/src/containers/Expenses/ExpenseForm/ExpenseFormPageProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext } from 'react'; import { DashboardInsider } from '@/components/Dashboard'; import { Features } from '@/constants'; diff --git a/src/containers/Expenses/ExpenseForm/ExpenseFormTopBar.tsx b/src/containers/Expenses/ExpenseForm/ExpenseFormTopBar.tsx index cf367a0df..9d7d4561b 100644 --- a/src/containers/Expenses/ExpenseForm/ExpenseFormTopBar.tsx +++ b/src/containers/Expenses/ExpenseForm/ExpenseFormTopBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Button, Alignment, NavbarGroup, Classes } from '@blueprintjs/core'; diff --git a/src/containers/Expenses/ExpenseForm/components.tsx b/src/containers/Expenses/ExpenseForm/components.tsx index 15465e3d4..228c47457 100644 --- a/src/containers/Expenses/ExpenseForm/components.tsx +++ b/src/containers/Expenses/ExpenseForm/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Button, Menu, MenuItem } from '@blueprintjs/core'; diff --git a/src/containers/Expenses/ExpenseForm/utils.tsx b/src/containers/Expenses/ExpenseForm/utils.tsx index 80df901da..905ca76f7 100644 --- a/src/containers/Expenses/ExpenseForm/utils.tsx +++ b/src/containers/Expenses/ExpenseForm/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as R from 'ramda'; import intl from 'react-intl-universal'; diff --git a/src/containers/Expenses/ExpenseUniversalSearch.tsx b/src/containers/Expenses/ExpenseUniversalSearch.tsx index c829e3609..2e9552df6 100644 --- a/src/containers/Expenses/ExpenseUniversalSearch.tsx +++ b/src/containers/Expenses/ExpenseUniversalSearch.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { RESOURCES_TYPES } from '@/constants/resourcesTypes'; import withDrawerActions from '@/containers/Drawer/withDrawerActions'; diff --git a/src/containers/Expenses/ExpensesAlerts.tsx b/src/containers/Expenses/ExpensesAlerts.tsx index 0901904f3..5b772b42c 100644 --- a/src/containers/Expenses/ExpensesAlerts.tsx +++ b/src/containers/Expenses/ExpensesAlerts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; const ExpenseDeleteAlert = React.lazy( diff --git a/src/containers/Expenses/ExpensesLanding/ExpenseActionsBar.tsx b/src/containers/Expenses/ExpensesLanding/ExpenseActionsBar.tsx index 6259db07d..17a9e17be 100644 --- a/src/containers/Expenses/ExpensesLanding/ExpenseActionsBar.tsx +++ b/src/containers/Expenses/ExpensesLanding/ExpenseActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, diff --git a/src/containers/Expenses/ExpensesLanding/ExpenseDataTable.tsx b/src/containers/Expenses/ExpensesLanding/ExpenseDataTable.tsx index 52966a044..d76812abe 100644 --- a/src/containers/Expenses/ExpensesLanding/ExpenseDataTable.tsx +++ b/src/containers/Expenses/ExpensesLanding/ExpenseDataTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Expenses/ExpensesLanding/ExpenseViewTabs.tsx b/src/containers/Expenses/ExpensesLanding/ExpenseViewTabs.tsx index 1b85bb6a8..8a80e3915 100644 --- a/src/containers/Expenses/ExpensesLanding/ExpenseViewTabs.tsx +++ b/src/containers/Expenses/ExpensesLanding/ExpenseViewTabs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Alignment, Navbar, NavbarGroup } from '@blueprintjs/core'; diff --git a/src/containers/Expenses/ExpensesLanding/ExpensesEmptyStatus.tsx b/src/containers/Expenses/ExpensesLanding/ExpensesEmptyStatus.tsx index f42064483..25868b29b 100644 --- a/src/containers/Expenses/ExpensesLanding/ExpensesEmptyStatus.tsx +++ b/src/containers/Expenses/ExpensesLanding/ExpensesEmptyStatus.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, Intent } from '@blueprintjs/core'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Expenses/ExpensesLanding/ExpensesList.tsx b/src/containers/Expenses/ExpensesLanding/ExpensesList.tsx index c90ee5393..65e9e69fa 100644 --- a/src/containers/Expenses/ExpensesLanding/ExpensesList.tsx +++ b/src/containers/Expenses/ExpensesLanding/ExpensesList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect } from 'react'; import '@/style/pages/Expense/List.scss'; diff --git a/src/containers/Expenses/ExpensesLanding/ExpensesListProvider.tsx b/src/containers/Expenses/ExpensesLanding/ExpensesListProvider.tsx index 9fdcfae75..c7ac0e889 100644 --- a/src/containers/Expenses/ExpensesLanding/ExpensesListProvider.tsx +++ b/src/containers/Expenses/ExpensesLanding/ExpensesListProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext } from 'react'; import { isEmpty } from 'lodash'; diff --git a/src/containers/Expenses/ExpensesLanding/components.tsx b/src/containers/Expenses/ExpensesLanding/components.tsx index e8f807a1c..3f32537d1 100644 --- a/src/containers/Expenses/ExpensesLanding/components.tsx +++ b/src/containers/Expenses/ExpensesLanding/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { diff --git a/src/containers/Expenses/ExpensesLanding/withExpenses.tsx b/src/containers/Expenses/ExpensesLanding/withExpenses.tsx index ce44093c8..7371a37d2 100644 --- a/src/containers/Expenses/ExpensesLanding/withExpenses.tsx +++ b/src/containers/Expenses/ExpensesLanding/withExpenses.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { expensesTableStateChangedFactory, diff --git a/src/containers/Expenses/ExpensesLanding/withExpensesActions.tsx b/src/containers/Expenses/ExpensesLanding/withExpensesActions.tsx index ce85a50b8..34c1bbb4d 100644 --- a/src/containers/Expenses/ExpensesLanding/withExpensesActions.tsx +++ b/src/containers/Expenses/ExpensesLanding/withExpensesActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { setExpensesTableState, diff --git a/src/containers/Expenses/withExpenseDetail.tsx b/src/containers/Expenses/withExpenseDetail.tsx index 8b29fc2ec..2fe594a1d 100644 --- a/src/containers/Expenses/withExpenseDetail.tsx +++ b/src/containers/Expenses/withExpenseDetail.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getExpenseByIdFactory } from '@/store/expenses/expenses.selectors'; diff --git a/src/containers/FinancialStatements/APAgingSummary/APAgingSummary.tsx b/src/containers/FinancialStatements/APAgingSummary/APAgingSummary.tsx index 744e1744b..123b6c418 100644 --- a/src/containers/FinancialStatements/APAgingSummary/APAgingSummary.tsx +++ b/src/containers/FinancialStatements/APAgingSummary/APAgingSummary.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useState, useCallback, useEffect } from 'react'; import moment from 'moment'; diff --git a/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryActionsBar.tsx b/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryActionsBar.tsx index e4339c1bf..de806ab2f 100644 --- a/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryActionsBar.tsx +++ b/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { NavbarDivider, diff --git a/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryBody.tsx b/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryBody.tsx index 0180f7798..c49642106 100644 --- a/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryBody.tsx +++ b/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryBody.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as R from 'ramda'; diff --git a/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryGeneralProvider.tsx b/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryGeneralProvider.tsx index 00243801b..5a0dc0cf4 100644 --- a/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryGeneralProvider.tsx +++ b/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryGeneralProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useContext } from 'react'; import { useVendors } from '@/hooks/query'; diff --git a/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeader.tsx b/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeader.tsx index 083987432..564b40b18 100644 --- a/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeader.tsx +++ b/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import * as Yup from 'yup'; diff --git a/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeaderDimensions.tsx b/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeaderDimensions.tsx index 3e0bf4ed0..c7ebe7c36 100644 --- a/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeaderDimensions.tsx +++ b/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeaderDimensions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { FormGroup, Classes } from '@blueprintjs/core'; diff --git a/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeaderDimensionsProvider.tsx b/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeaderDimensionsProvider.tsx index 6fe0c44d2..76f683929 100644 --- a/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeaderDimensionsProvider.tsx +++ b/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeaderDimensionsProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Features } from '@/constants'; import { useFeatureCan } from '@/hooks/state'; diff --git a/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeaderGeneral.tsx b/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeaderGeneral.tsx index 1b9a08b85..be1115a44 100644 --- a/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeaderGeneral.tsx +++ b/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeaderGeneral.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { APAgingSummaryGeneralProvider } from './APAgingSummaryGeneralProvider'; import APAgingSummaryHeaderGeneralContent from './APAgingSummaryHeaderGeneralContent'; diff --git a/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeaderGeneralContent.tsx b/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeaderGeneralContent.tsx index 36b100378..d1fd8de43 100644 --- a/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeaderGeneralContent.tsx +++ b/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeaderGeneralContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FastField, Field } from 'formik'; import { DateInput } from '@blueprintjs/datetime'; diff --git a/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryProvider.tsx b/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryProvider.tsx index 69b406b06..367140711 100644 --- a/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryProvider.tsx +++ b/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo, createContext, useContext } from 'react'; import FinancialReportPage from '../FinancialReportPage'; diff --git a/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryTable.tsx b/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryTable.tsx index db58b4cf4..a54f25a09 100644 --- a/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryTable.tsx +++ b/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/FinancialStatements/APAgingSummary/common.tsx b/src/containers/FinancialStatements/APAgingSummary/common.tsx index 59262bfdb..4bb594970 100644 --- a/src/containers/FinancialStatements/APAgingSummary/common.tsx +++ b/src/containers/FinancialStatements/APAgingSummary/common.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import moment from 'moment'; import { transformToCamelCase, flatObject } from '@/utils'; diff --git a/src/containers/FinancialStatements/APAgingSummary/components.tsx b/src/containers/FinancialStatements/APAgingSummary/components.tsx index f1179e233..b67c7c7ce 100644 --- a/src/containers/FinancialStatements/APAgingSummary/components.tsx +++ b/src/containers/FinancialStatements/APAgingSummary/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import intl from 'react-intl-universal'; import { If, FormattedMessage as T } from '@/components'; diff --git a/src/containers/FinancialStatements/APAgingSummary/constants.tsx b/src/containers/FinancialStatements/APAgingSummary/constants.tsx index c8d928f55..088f8e7cc 100644 --- a/src/containers/FinancialStatements/APAgingSummary/constants.tsx +++ b/src/containers/FinancialStatements/APAgingSummary/constants.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; export const filterVendorsOptions = [ diff --git a/src/containers/FinancialStatements/APAgingSummary/withAPAgingSummary.tsx b/src/containers/FinancialStatements/APAgingSummary/withAPAgingSummary.tsx index 051bae8bb..1a6d9696e 100644 --- a/src/containers/FinancialStatements/APAgingSummary/withAPAgingSummary.tsx +++ b/src/containers/FinancialStatements/APAgingSummary/withAPAgingSummary.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { APAgingSummaryFilterDrawerSelector, diff --git a/src/containers/FinancialStatements/APAgingSummary/withAPAgingSummaryActions.tsx b/src/containers/FinancialStatements/APAgingSummary/withAPAgingSummaryActions.tsx index 98c7ae7ae..de8086197 100644 --- a/src/containers/FinancialStatements/APAgingSummary/withAPAgingSummaryActions.tsx +++ b/src/containers/FinancialStatements/APAgingSummary/withAPAgingSummaryActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { toggleAPAgingSummaryFilterDrawer } from '@/store/financialStatement/financialStatements.actions'; diff --git a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummary.tsx b/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummary.tsx index 3fd76293c..99456ae26 100644 --- a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummary.tsx +++ b/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummary.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useState, useCallback, useEffect } from 'react'; import moment from 'moment'; diff --git a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryActionsBar.tsx b/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryActionsBar.tsx index 18dd582c7..b239c764c 100644 --- a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryActionsBar.tsx +++ b/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { NavbarDivider, diff --git a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryBody.tsx b/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryBody.tsx index 73c9fe8a3..4d51ee6e7 100644 --- a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryBody.tsx +++ b/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryBody.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as R from 'ramda'; diff --git a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryGeneralProvider.tsx b/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryGeneralProvider.tsx index b5ef5a8b0..e3a56082e 100644 --- a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryGeneralProvider.tsx +++ b/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryGeneralProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useContext } from 'react'; import { useCustomers } from '@/hooks/query'; import { FinancialHeaderLoadingSkeleton } from '../FinancialHeaderLoadingSkeleton'; diff --git a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeader.tsx b/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeader.tsx index 6d91226db..0eb70786e 100644 --- a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeader.tsx +++ b/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import moment from 'moment'; diff --git a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeaderDimensions.tsx b/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeaderDimensions.tsx index a010731d1..08c2f39b6 100644 --- a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeaderDimensions.tsx +++ b/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeaderDimensions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { FormGroup, Classes } from '@blueprintjs/core'; diff --git a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeaderDimensionsProvider.tsx b/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeaderDimensionsProvider.tsx index 8f4c0486a..56872bcf9 100644 --- a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeaderDimensionsProvider.tsx +++ b/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeaderDimensionsProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Features } from '@/constants'; import { useFeatureCan } from '@/hooks/state'; diff --git a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeaderGeneral.tsx b/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeaderGeneral.tsx index 1eaae4ebf..eee23fc11 100644 --- a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeaderGeneral.tsx +++ b/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeaderGeneral.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { ARAgingSummaryGeneralProvider } from './ARAgingSummaryGeneralProvider'; import ARAgingSummaryHeaderGeneralContent from './ARAgingSummaryHeaderGeneralContent'; diff --git a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeaderGeneralContent.tsx b/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeaderGeneralContent.tsx index 47974bfc4..64dc309fe 100644 --- a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeaderGeneralContent.tsx +++ b/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeaderGeneralContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FastField, Field } from 'formik'; import { DateInput } from '@blueprintjs/datetime'; diff --git a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryProvider.tsx b/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryProvider.tsx index 856447802..c29e2a43d 100644 --- a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryProvider.tsx +++ b/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo, createContext, useContext } from 'react'; import FinancialReportPage from '../FinancialReportPage'; import { useARAgingSummaryReport } from '@/hooks/query'; diff --git a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryTable.tsx b/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryTable.tsx index 61402bb13..11f1dfa19 100644 --- a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryTable.tsx +++ b/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/FinancialStatements/ARAgingSummary/common.tsx b/src/containers/FinancialStatements/ARAgingSummary/common.tsx index d97ce6474..8684c277f 100644 --- a/src/containers/FinancialStatements/ARAgingSummary/common.tsx +++ b/src/containers/FinancialStatements/ARAgingSummary/common.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import moment from 'moment'; import { transformToCamelCase, flatObject } from '@/utils'; diff --git a/src/containers/FinancialStatements/ARAgingSummary/components.tsx b/src/containers/FinancialStatements/ARAgingSummary/components.tsx index 729ebd2b5..1cbea1c17 100644 --- a/src/containers/FinancialStatements/ARAgingSummary/components.tsx +++ b/src/containers/FinancialStatements/ARAgingSummary/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; diff --git a/src/containers/FinancialStatements/ARAgingSummary/constants.tsx b/src/containers/FinancialStatements/ARAgingSummary/constants.tsx index cb4c916d8..ffb44d429 100644 --- a/src/containers/FinancialStatements/ARAgingSummary/constants.tsx +++ b/src/containers/FinancialStatements/ARAgingSummary/constants.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; export const filterCustomersOptions = [ diff --git a/src/containers/FinancialStatements/ARAgingSummary/withARAgingSummary.tsx b/src/containers/FinancialStatements/ARAgingSummary/withARAgingSummary.tsx index bdba5c914..6427434c9 100644 --- a/src/containers/FinancialStatements/ARAgingSummary/withARAgingSummary.tsx +++ b/src/containers/FinancialStatements/ARAgingSummary/withARAgingSummary.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getARAgingSummaryFilterDrawer, diff --git a/src/containers/FinancialStatements/ARAgingSummary/withARAgingSummaryActions.tsx b/src/containers/FinancialStatements/ARAgingSummary/withARAgingSummaryActions.tsx index ef28c46b0..ef7273456 100644 --- a/src/containers/FinancialStatements/ARAgingSummary/withARAgingSummaryActions.tsx +++ b/src/containers/FinancialStatements/ARAgingSummary/withARAgingSummaryActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { toggleARAgingSummaryFilterDrawer } from '@/store/financialStatement/financialStatements.actions'; diff --git a/src/containers/FinancialStatements/BalanceSheet/BalanceSheet.tsx b/src/containers/FinancialStatements/BalanceSheet/BalanceSheet.tsx index 836d28ed0..787c7f14e 100644 --- a/src/containers/FinancialStatements/BalanceSheet/BalanceSheet.tsx +++ b/src/containers/FinancialStatements/BalanceSheet/BalanceSheet.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect } from 'react'; import moment from 'moment'; diff --git a/src/containers/FinancialStatements/BalanceSheet/BalanceSheetActionsBar.tsx b/src/containers/FinancialStatements/BalanceSheet/BalanceSheetActionsBar.tsx index 23693699d..dd50cd541 100644 --- a/src/containers/FinancialStatements/BalanceSheet/BalanceSheetActionsBar.tsx +++ b/src/containers/FinancialStatements/BalanceSheet/BalanceSheetActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { NavbarGroup, diff --git a/src/containers/FinancialStatements/BalanceSheet/BalanceSheetBody.tsx b/src/containers/FinancialStatements/BalanceSheet/BalanceSheetBody.tsx index c49200176..7b75627ae 100644 --- a/src/containers/FinancialStatements/BalanceSheet/BalanceSheetBody.tsx +++ b/src/containers/FinancialStatements/BalanceSheet/BalanceSheetBody.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import BalanceSheetTable from './BalanceSheetTable'; diff --git a/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeader.tsx b/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeader.tsx index 34547a27e..ecb8e3c75 100644 --- a/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeader.tsx +++ b/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import moment from 'moment'; diff --git a/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeaderComparisonPanal.tsx b/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeaderComparisonPanal.tsx index ad84f7ac3..dc1896510 100644 --- a/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeaderComparisonPanal.tsx +++ b/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeaderComparisonPanal.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { FastField, Field } from 'formik'; diff --git a/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeaderDimensionsPanel.tsx b/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeaderDimensionsPanel.tsx index f72815dfc..4c283bf68 100644 --- a/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeaderDimensionsPanel.tsx +++ b/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeaderDimensionsPanel.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { FormGroup, Classes } from '@blueprintjs/core'; diff --git a/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeaderDimensionsProvider.tsx b/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeaderDimensionsProvider.tsx index 1d72f2d31..2b1353ef0 100644 --- a/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeaderDimensionsProvider.tsx +++ b/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeaderDimensionsProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Features } from '@/constants'; diff --git a/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeaderGeneralPanal.tsx b/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeaderGeneralPanal.tsx index d2305d0a9..07333eb9e 100644 --- a/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeaderGeneralPanal.tsx +++ b/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeaderGeneralPanal.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Row, Col } from '@/components'; diff --git a/src/containers/FinancialStatements/BalanceSheet/BalanceSheetProvider.tsx b/src/containers/FinancialStatements/BalanceSheet/BalanceSheetProvider.tsx index d78721f93..13c1b583e 100644 --- a/src/containers/FinancialStatements/BalanceSheet/BalanceSheetProvider.tsx +++ b/src/containers/FinancialStatements/BalanceSheet/BalanceSheetProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useContext } from 'react'; import FinancialReportPage from '../FinancialReportPage'; diff --git a/src/containers/FinancialStatements/BalanceSheet/BalanceSheetTable.tsx b/src/containers/FinancialStatements/BalanceSheet/BalanceSheetTable.tsx index 872116a64..4bd899f79 100644 --- a/src/containers/FinancialStatements/BalanceSheet/BalanceSheetTable.tsx +++ b/src/containers/FinancialStatements/BalanceSheet/BalanceSheetTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import intl from 'react-intl-universal'; diff --git a/src/containers/FinancialStatements/BalanceSheet/components.tsx b/src/containers/FinancialStatements/BalanceSheet/components.tsx index f98cce190..9bde9747d 100644 --- a/src/containers/FinancialStatements/BalanceSheet/components.tsx +++ b/src/containers/FinancialStatements/BalanceSheet/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button } from '@blueprintjs/core'; diff --git a/src/containers/FinancialStatements/BalanceSheet/dynamicColumns.tsx b/src/containers/FinancialStatements/BalanceSheet/dynamicColumns.tsx index c25b96a5e..bb49f7b96 100644 --- a/src/containers/FinancialStatements/BalanceSheet/dynamicColumns.tsx +++ b/src/containers/FinancialStatements/BalanceSheet/dynamicColumns.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as R from 'ramda'; import { isEmpty } from 'lodash'; diff --git a/src/containers/FinancialStatements/BalanceSheet/utils.tsx b/src/containers/FinancialStatements/BalanceSheet/utils.tsx index 900c581a1..937178490 100644 --- a/src/containers/FinancialStatements/BalanceSheet/utils.tsx +++ b/src/containers/FinancialStatements/BalanceSheet/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as R from 'ramda'; import moment from 'moment'; diff --git a/src/containers/FinancialStatements/BalanceSheet/withBalanceSheet.tsx b/src/containers/FinancialStatements/BalanceSheet/withBalanceSheet.tsx index 0c141123f..71f6de337 100644 --- a/src/containers/FinancialStatements/BalanceSheet/withBalanceSheet.tsx +++ b/src/containers/FinancialStatements/BalanceSheet/withBalanceSheet.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getBalanceSheetFilterDrawer } from '@/store/financialStatement/financialStatements.selectors'; diff --git a/src/containers/FinancialStatements/BalanceSheet/withBalanceSheetActions.tsx b/src/containers/FinancialStatements/BalanceSheet/withBalanceSheetActions.tsx index 026e43813..bb8671140 100644 --- a/src/containers/FinancialStatements/BalanceSheet/withBalanceSheetActions.tsx +++ b/src/containers/FinancialStatements/BalanceSheet/withBalanceSheetActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { toggleBalanceSheetFilterDrawer, diff --git a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatement.tsx b/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatement.tsx index a9c09c688..fd0f853bf 100644 --- a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatement.tsx +++ b/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatement.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect } from 'react'; import moment from 'moment'; diff --git a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementActionsBar.tsx b/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementActionsBar.tsx index 5d10a2314..559f86053 100644 --- a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementActionsBar.tsx +++ b/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { NavbarGroup, diff --git a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementBody.tsx b/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementBody.tsx index a7053273e..c62e4807c 100644 --- a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementBody.tsx +++ b/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementBody.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as R from 'ramda'; diff --git a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementDimensionsPanel.tsx b/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementDimensionsPanel.tsx index 2e9269bbd..177e09bdd 100644 --- a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementDimensionsPanel.tsx +++ b/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementDimensionsPanel.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { FormGroup, Classes } from '@blueprintjs/core'; diff --git a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementDimensionsPanelProvider.tsx b/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementDimensionsPanelProvider.tsx index 70bccb360..1b8e2ee48 100644 --- a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementDimensionsPanelProvider.tsx +++ b/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementDimensionsPanelProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Features } from '@/constants'; import { useBranches } from '@/hooks/query'; diff --git a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementGeneralPanel.tsx b/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementGeneralPanel.tsx index b744f840e..b1aeda98f 100644 --- a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementGeneralPanel.tsx +++ b/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementGeneralPanel.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Row, Col } from '@/components'; diff --git a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementHeader.tsx b/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementHeader.tsx index 82c194697..93ffca71d 100644 --- a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementHeader.tsx +++ b/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Tabs, Tab, Button, Intent } from '@blueprintjs/core'; import { FormattedMessage as T } from '@/components'; diff --git a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementProvider.tsx b/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementProvider.tsx index e396ca39d..9ce42d986 100644 --- a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementProvider.tsx +++ b/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import FinancialReportPage from '../FinancialReportPage'; import { useCashFlowStatementReport } from '@/hooks/query'; diff --git a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementTable.tsx b/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementTable.tsx index b70a15bc2..7dac65e9c 100644 --- a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementTable.tsx +++ b/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/FinancialStatements/CashFlowStatement/components.tsx b/src/containers/FinancialStatements/CashFlowStatement/components.tsx index 450ec1e02..5458fc7f9 100644 --- a/src/containers/FinancialStatements/CashFlowStatement/components.tsx +++ b/src/containers/FinancialStatements/CashFlowStatement/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button } from '@blueprintjs/core'; diff --git a/src/containers/FinancialStatements/CashFlowStatement/dynamicColumns.tsx b/src/containers/FinancialStatements/CashFlowStatement/dynamicColumns.tsx index 63e975908..cde12d338 100644 --- a/src/containers/FinancialStatements/CashFlowStatement/dynamicColumns.tsx +++ b/src/containers/FinancialStatements/CashFlowStatement/dynamicColumns.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as R from 'ramda'; import intl from 'react-intl-universal'; diff --git a/src/containers/FinancialStatements/CashFlowStatement/utils.tsx b/src/containers/FinancialStatements/CashFlowStatement/utils.tsx index bfdd4bba1..ecad0760e 100644 --- a/src/containers/FinancialStatements/CashFlowStatement/utils.tsx +++ b/src/containers/FinancialStatements/CashFlowStatement/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import { castArray } from 'lodash'; diff --git a/src/containers/FinancialStatements/CashFlowStatement/withCashFlowStatement.tsx b/src/containers/FinancialStatements/CashFlowStatement/withCashFlowStatement.tsx index 17f623b55..08d979741 100644 --- a/src/containers/FinancialStatements/CashFlowStatement/withCashFlowStatement.tsx +++ b/src/containers/FinancialStatements/CashFlowStatement/withCashFlowStatement.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getCashFlowStatementFilterDrawer } from '@/store/financialStatement/financialStatements.selectors'; diff --git a/src/containers/FinancialStatements/CashFlowStatement/withCashFlowStatementActions.tsx b/src/containers/FinancialStatements/CashFlowStatement/withCashFlowStatementActions.tsx index 797ff2658..3e90d9db5 100644 --- a/src/containers/FinancialStatements/CashFlowStatement/withCashFlowStatementActions.tsx +++ b/src/containers/FinancialStatements/CashFlowStatement/withCashFlowStatementActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { toggleCashFlowStatementFilterDrawer } from '@/store/financialStatement/financialStatements.actions'; diff --git a/src/containers/FinancialStatements/CustomersBalanceSummary/CustomerBalanceSummaryBody.tsx b/src/containers/FinancialStatements/CustomersBalanceSummary/CustomerBalanceSummaryBody.tsx index 0e3096518..5a5646c58 100644 --- a/src/containers/FinancialStatements/CustomersBalanceSummary/CustomerBalanceSummaryBody.tsx +++ b/src/containers/FinancialStatements/CustomersBalanceSummary/CustomerBalanceSummaryBody.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as R from 'ramda'; diff --git a/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummary.tsx b/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummary.tsx index a84b245d4..ab4fa5b54 100644 --- a/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummary.tsx +++ b/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummary.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect, useState } from 'react'; import moment from 'moment'; import * as R from 'ramda'; diff --git a/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryActionsBar.tsx b/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryActionsBar.tsx index b26e533ef..7d85ac02e 100644 --- a/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryActionsBar.tsx +++ b/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { NavbarGroup, diff --git a/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryGeneralPanel.tsx b/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryGeneralPanel.tsx index ea1e38ee1..800fc6cac 100644 --- a/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryGeneralPanel.tsx +++ b/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryGeneralPanel.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import CustomersBalanceSummaryGeneralPanelContent from './CustomersBalanceSummaryGeneralPanelContent'; import { CustomersBalanceSummaryGeneralProvider } from './CustomersBalanceSummaryGeneralProvider'; diff --git a/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryGeneralPanelContent.tsx b/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryGeneralPanelContent.tsx index a9abb761f..fbd81fa24 100644 --- a/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryGeneralPanelContent.tsx +++ b/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryGeneralPanelContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FastField, Field } from 'formik'; import { DateInput } from '@blueprintjs/datetime'; diff --git a/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryGeneralProvider.tsx b/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryGeneralProvider.tsx index 770c5998e..e067de6cf 100644 --- a/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryGeneralProvider.tsx +++ b/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryGeneralProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useContext } from 'react'; import { FinancialHeaderLoadingSkeleton } from '../FinancialHeaderLoadingSkeleton'; import { useCustomers } from '@/hooks/query'; diff --git a/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryHeader.tsx b/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryHeader.tsx index 29952c9f5..131668761 100644 --- a/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryHeader.tsx +++ b/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as Yup from 'yup'; import styled from 'styled-components'; diff --git a/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryProvider.tsx b/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryProvider.tsx index d7104d9e1..63f26ca2e 100644 --- a/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryProvider.tsx +++ b/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useContext } from 'react'; import FinancialReportPage from '../FinancialReportPage'; import { useCustomerBalanceSummaryReport } from '@/hooks/query'; diff --git a/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryTable.tsx b/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryTable.tsx index bca73544c..729b04617 100644 --- a/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryTable.tsx +++ b/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/FinancialStatements/CustomersBalanceSummary/components.tsx b/src/containers/FinancialStatements/CustomersBalanceSummary/components.tsx index a832af5a3..6fd7aad66 100644 --- a/src/containers/FinancialStatements/CustomersBalanceSummary/components.tsx +++ b/src/containers/FinancialStatements/CustomersBalanceSummary/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import * as R from 'ramda'; diff --git a/src/containers/FinancialStatements/CustomersBalanceSummary/utils.tsx b/src/containers/FinancialStatements/CustomersBalanceSummary/utils.tsx index b1b2471b8..61d3d29f2 100644 --- a/src/containers/FinancialStatements/CustomersBalanceSummary/utils.tsx +++ b/src/containers/FinancialStatements/CustomersBalanceSummary/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import moment from 'moment'; export const getDefaultCustomersBalanceQuery = () => { diff --git a/src/containers/FinancialStatements/CustomersBalanceSummary/withCustomersBalanceSummary.tsx b/src/containers/FinancialStatements/CustomersBalanceSummary/withCustomersBalanceSummary.tsx index 5fa5a8427..6583a1090 100644 --- a/src/containers/FinancialStatements/CustomersBalanceSummary/withCustomersBalanceSummary.tsx +++ b/src/containers/FinancialStatements/CustomersBalanceSummary/withCustomersBalanceSummary.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getCustomersBalanceSummaryFilterDrawer } from '@/store/financialStatement/financialStatements.selectors'; diff --git a/src/containers/FinancialStatements/CustomersBalanceSummary/withCustomersBalanceSummaryActions.tsx b/src/containers/FinancialStatements/CustomersBalanceSummary/withCustomersBalanceSummaryActions.tsx index 1c73be183..81e6d7cdf 100644 --- a/src/containers/FinancialStatements/CustomersBalanceSummary/withCustomersBalanceSummaryActions.tsx +++ b/src/containers/FinancialStatements/CustomersBalanceSummary/withCustomersBalanceSummaryActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { toggleCustomersBalanceSummaryFilterDrawer } from '@/store/financialStatement/financialStatements.actions'; diff --git a/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactions.tsx b/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactions.tsx index bed467273..b170cabe2 100644 --- a/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactions.tsx +++ b/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect, useState } from 'react'; import moment from 'moment'; diff --git a/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsActionsBar.tsx b/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsActionsBar.tsx index 9f4b255df..3b80a051a 100644 --- a/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsActionsBar.tsx +++ b/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { NavbarGroup, diff --git a/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsBody.tsx b/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsBody.tsx index f4825400b..1c04b3504 100644 --- a/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsBody.tsx +++ b/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsBody.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as R from 'ramda'; diff --git a/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsHeader.tsx b/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsHeader.tsx index 6d807fc3f..a96527b4f 100644 --- a/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsHeader.tsx +++ b/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as Yup from 'yup'; import intl from 'react-intl-universal'; diff --git a/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsHeaderGeneralPanel.tsx b/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsHeaderGeneralPanel.tsx index 6dc5c1f04..40394e175 100644 --- a/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsHeaderGeneralPanel.tsx +++ b/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsHeaderGeneralPanel.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import { Field } from 'formik'; diff --git a/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsHeaderGeneralPanelProvider.tsx b/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsHeaderGeneralPanelProvider.tsx index 031a132e8..a918252dd 100644 --- a/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsHeaderGeneralPanelProvider.tsx +++ b/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsHeaderGeneralPanelProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useContext } from 'react'; import { FinancialHeaderLoadingSkeleton } from '../FinancialHeaderLoadingSkeleton'; import { useCustomers } from '@/hooks/query'; diff --git a/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsProvider.tsx b/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsProvider.tsx index 8dfba39ce..59079c1ef 100644 --- a/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsProvider.tsx +++ b/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useContext, useMemo } from 'react'; import FinancialReportPage from '../FinancialReportPage'; import { useCustomersTransactionsReport } from '@/hooks/query'; diff --git a/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsTable.tsx b/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsTable.tsx index d281859aa..ef3ec53b1 100644 --- a/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsTable.tsx +++ b/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/FinancialStatements/CustomersTransactions/components.tsx b/src/containers/FinancialStatements/CustomersTransactions/components.tsx index 8423c8a14..b1137e130 100644 --- a/src/containers/FinancialStatements/CustomersTransactions/components.tsx +++ b/src/containers/FinancialStatements/CustomersTransactions/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { If } from '@/components'; diff --git a/src/containers/FinancialStatements/CustomersTransactions/withCustomersTransactions.tsx b/src/containers/FinancialStatements/CustomersTransactions/withCustomersTransactions.tsx index f69e18d11..7a074cb35 100644 --- a/src/containers/FinancialStatements/CustomersTransactions/withCustomersTransactions.tsx +++ b/src/containers/FinancialStatements/CustomersTransactions/withCustomersTransactions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getCustomersTransactionsFilterDrawer } from '@/store/financialStatement/financialStatements.selectors'; diff --git a/src/containers/FinancialStatements/CustomersTransactions/withCustomersTransactionsActions.tsx b/src/containers/FinancialStatements/CustomersTransactions/withCustomersTransactionsActions.tsx index 940bb4543..f3cf0fc5f 100644 --- a/src/containers/FinancialStatements/CustomersTransactions/withCustomersTransactionsActions.tsx +++ b/src/containers/FinancialStatements/CustomersTransactions/withCustomersTransactionsActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { toggleCustomersTransactionsFilterDrawer } from '@/store/financialStatement/financialStatements.actions'; diff --git a/src/containers/FinancialStatements/FilterFinancialReports.tsx b/src/containers/FinancialStatements/FilterFinancialReports.tsx index 328b53eff..ae9c30f42 100644 --- a/src/containers/FinancialStatements/FilterFinancialReports.tsx +++ b/src/containers/FinancialStatements/FilterFinancialReports.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { isEmpty } from 'lodash'; import { useAbilityContext } from '@/hooks'; diff --git a/src/containers/FinancialStatements/FinancialHeaderLoadingSkeleton.tsx b/src/containers/FinancialStatements/FinancialHeaderLoadingSkeleton.tsx index 25da46822..ca7cecf09 100644 --- a/src/containers/FinancialStatements/FinancialHeaderLoadingSkeleton.tsx +++ b/src/containers/FinancialStatements/FinancialHeaderLoadingSkeleton.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Classes } from '@blueprintjs/core'; import clsx from 'classnames'; diff --git a/src/containers/FinancialStatements/FinancialLoadingBar.tsx b/src/containers/FinancialStatements/FinancialLoadingBar.tsx index bceceb1ef..419ad15b2 100644 --- a/src/containers/FinancialStatements/FinancialLoadingBar.tsx +++ b/src/containers/FinancialStatements/FinancialLoadingBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { MaterialProgressBar } from '@/components'; diff --git a/src/containers/FinancialStatements/FinancialReportPage.tsx b/src/containers/FinancialStatements/FinancialReportPage.tsx index 5a44c35c6..b62dba6a6 100644 --- a/src/containers/FinancialStatements/FinancialReportPage.tsx +++ b/src/containers/FinancialStatements/FinancialReportPage.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import styled from 'styled-components'; diff --git a/src/containers/FinancialStatements/FinancialReports.tsx b/src/containers/FinancialStatements/FinancialReports.tsx index 3484242ee..984c86868 100644 --- a/src/containers/FinancialStatements/FinancialReports.tsx +++ b/src/containers/FinancialStatements/FinancialReports.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Link } from 'react-router-dom'; import { For, DashboardInsider } from '@/components'; diff --git a/src/containers/FinancialStatements/FinancialStatementDateRange.tsx b/src/containers/FinancialStatements/FinancialStatementDateRange.tsx index 600a065c4..592a98cf0 100644 --- a/src/containers/FinancialStatements/FinancialStatementDateRange.tsx +++ b/src/containers/FinancialStatements/FinancialStatementDateRange.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import moment from 'moment'; diff --git a/src/containers/FinancialStatements/FinancialStatementHeader.tsx b/src/containers/FinancialStatements/FinancialStatementHeader.tsx index 98b5a93bf..21f233296 100644 --- a/src/containers/FinancialStatements/FinancialStatementHeader.tsx +++ b/src/containers/FinancialStatements/FinancialStatementHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect, useState } from 'react'; import classNames from 'classnames'; import { Position, Drawer } from '@blueprintjs/core'; diff --git a/src/containers/FinancialStatements/FinancialStatements.tsx b/src/containers/FinancialStatements/FinancialStatements.tsx deleted file mode 100644 index e69de29bb..000000000 diff --git a/src/containers/FinancialStatements/FinancialStatementsFilter.tsx b/src/containers/FinancialStatements/FinancialStatementsFilter.tsx index c8ea205e2..a5168b7ad 100644 --- a/src/containers/FinancialStatements/FinancialStatementsFilter.tsx +++ b/src/containers/FinancialStatements/FinancialStatementsFilter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FastField } from 'formik'; import { @@ -7,12 +8,11 @@ import { Position, FormGroup, } from '@blueprintjs/core'; +import classNames from 'classnames'; import { ListSelect, MODIFIER, FormattedMessage as T } from '@/components'; import { CLASSES } from '@/constants/classes'; import { filterAccountsOptions } from './constants'; -import classNames from 'classnames'; - export default function FinancialStatementsFilter({ items = filterAccountsOptions, label = , diff --git a/src/containers/FinancialStatements/GeneralLedger/GLHeaderGeneralPaneProvider.tsx b/src/containers/FinancialStatements/GeneralLedger/GLHeaderGeneralPaneProvider.tsx index 8deae7ce0..44a7939af 100644 --- a/src/containers/FinancialStatements/GeneralLedger/GLHeaderGeneralPaneProvider.tsx +++ b/src/containers/FinancialStatements/GeneralLedger/GLHeaderGeneralPaneProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useContext } from 'react'; import { useAccounts } from '@/hooks/query'; diff --git a/src/containers/FinancialStatements/GeneralLedger/GeneralLedger.tsx b/src/containers/FinancialStatements/GeneralLedger/GeneralLedger.tsx index c4bcef605..934f5c628 100644 --- a/src/containers/FinancialStatements/GeneralLedger/GeneralLedger.tsx +++ b/src/containers/FinancialStatements/GeneralLedger/GeneralLedger.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import moment from 'moment'; diff --git a/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerActionsBar.tsx b/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerActionsBar.tsx index e966e1ece..971da31d9 100644 --- a/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerActionsBar.tsx +++ b/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { NavbarGroup, diff --git a/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerBody.tsx b/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerBody.tsx index 4d1da6f02..a9fd39433 100644 --- a/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerBody.tsx +++ b/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerBody.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as R from 'ramda'; diff --git a/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeader.tsx b/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeader.tsx index bc10746e5..9060c1b63 100644 --- a/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeader.tsx +++ b/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import styled from 'styled-components'; diff --git a/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeaderDimensionsPanel.tsx b/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeaderDimensionsPanel.tsx index 0f3637697..7b739f7bb 100644 --- a/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeaderDimensionsPanel.tsx +++ b/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeaderDimensionsPanel.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { FormGroup, Classes } from '@blueprintjs/core'; diff --git a/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeaderDimensionsPanelProvider.tsx b/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeaderDimensionsPanelProvider.tsx index 66efcdabd..c1afde8bd 100644 --- a/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeaderDimensionsPanelProvider.tsx +++ b/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeaderDimensionsPanelProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Features } from '@/constants'; diff --git a/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeaderGeneralPane.tsx b/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeaderGeneralPane.tsx index 769deffae..6e659ebee 100644 --- a/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeaderGeneralPane.tsx +++ b/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeaderGeneralPane.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Classes } from '@blueprintjs/core'; diff --git a/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerProvider.tsx b/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerProvider.tsx index 615e6fe68..b30bf42da 100644 --- a/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerProvider.tsx +++ b/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useContext } from 'react'; import FinancialReportPage from '../FinancialReportPage'; diff --git a/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerTable.tsx b/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerTable.tsx index b573a4a17..b46038fcc 100644 --- a/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerTable.tsx +++ b/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/FinancialStatements/GeneralLedger/common.tsx b/src/containers/FinancialStatements/GeneralLedger/common.tsx index 939ce33da..fa45caa9a 100644 --- a/src/containers/FinancialStatements/GeneralLedger/common.tsx +++ b/src/containers/FinancialStatements/GeneralLedger/common.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import moment from 'moment'; diff --git a/src/containers/FinancialStatements/GeneralLedger/components.tsx b/src/containers/FinancialStatements/GeneralLedger/components.tsx index 2c5c92634..b3793a5e1 100644 --- a/src/containers/FinancialStatements/GeneralLedger/components.tsx +++ b/src/containers/FinancialStatements/GeneralLedger/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Button } from '@blueprintjs/core'; diff --git a/src/containers/FinancialStatements/GeneralLedger/withGeneralLedger.tsx b/src/containers/FinancialStatements/GeneralLedger/withGeneralLedger.tsx index 60f055f56..e0f4d7719 100644 --- a/src/containers/FinancialStatements/GeneralLedger/withGeneralLedger.tsx +++ b/src/containers/FinancialStatements/GeneralLedger/withGeneralLedger.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getGeneralLedgerFilterDrawer diff --git a/src/containers/FinancialStatements/GeneralLedger/withGeneralLedgerActions.tsx b/src/containers/FinancialStatements/GeneralLedger/withGeneralLedgerActions.tsx index dbc6170f2..6a3d9bbc7 100644 --- a/src/containers/FinancialStatements/GeneralLedger/withGeneralLedgerActions.tsx +++ b/src/containers/FinancialStatements/GeneralLedger/withGeneralLedgerActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { toggleGeneralLedgerFilterDrawer, diff --git a/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetails.tsx b/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetails.tsx index 59f30d1d6..c17db8f85 100644 --- a/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetails.tsx +++ b/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetails.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect } from 'react'; import moment from 'moment'; diff --git a/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsActionsBar.tsx b/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsActionsBar.tsx index 8f48351eb..94dea9531 100644 --- a/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsActionsBar.tsx +++ b/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { NavbarGroup, diff --git a/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsBody.tsx b/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsBody.tsx index 174c23c77..06e1978fc 100644 --- a/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsBody.tsx +++ b/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsBody.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as R from 'ramda'; diff --git a/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeader.tsx b/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeader.tsx index 460b0dd78..b38e7e276 100644 --- a/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeader.tsx +++ b/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as Yup from 'yup'; import moment from 'moment'; diff --git a/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeaderDimensionsPanel.tsx b/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeaderDimensionsPanel.tsx index eeb94de03..579b2c817 100644 --- a/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeaderDimensionsPanel.tsx +++ b/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeaderDimensionsPanel.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { FormGroup, Classes } from '@blueprintjs/core'; diff --git a/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeaderDimensionsPanelProvider.tsx b/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeaderDimensionsPanelProvider.tsx index 0a1b14954..d183f0b25 100644 --- a/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeaderDimensionsPanelProvider.tsx +++ b/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeaderDimensionsPanelProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useWarehouses, useBranches } from '@/hooks/query'; diff --git a/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeaderGeneralPanel.tsx b/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeaderGeneralPanel.tsx index b01cf5d56..9335ab79c 100644 --- a/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeaderGeneralPanel.tsx +++ b/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeaderGeneralPanel.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FormGroup, Classes } from '@blueprintjs/core'; import { Field } from 'formik'; diff --git a/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeaderGeneralProvider.tsx b/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeaderGeneralProvider.tsx index e6b3258d5..99ce91ec6 100644 --- a/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeaderGeneralProvider.tsx +++ b/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeaderGeneralProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useItems } from '@/hooks/query'; import { FinancialHeaderLoadingSkeleton } from '../FinancialHeaderLoadingSkeleton'; diff --git a/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsProvider.tsx b/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsProvider.tsx index 3c8307088..e26c00cfd 100644 --- a/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsProvider.tsx +++ b/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import FinancialReportPage from '../FinancialReportPage'; import { useInventoryItemDetailsReport } from '@/hooks/query'; diff --git a/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsTable.tsx b/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsTable.tsx index 21ebdac9d..8171862f7 100644 --- a/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsTable.tsx +++ b/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/FinancialStatements/InventoryItemDetails/components.tsx b/src/containers/FinancialStatements/InventoryItemDetails/components.tsx index 9b6030c28..6349b0a55 100644 --- a/src/containers/FinancialStatements/InventoryItemDetails/components.tsx +++ b/src/containers/FinancialStatements/InventoryItemDetails/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button } from '@blueprintjs/core'; import { Icon, If, FormattedMessage as T } from '@/components'; diff --git a/src/containers/FinancialStatements/InventoryItemDetails/utils.tsx b/src/containers/FinancialStatements/InventoryItemDetails/utils.tsx index b9c1ad26f..25be4e5da 100644 --- a/src/containers/FinancialStatements/InventoryItemDetails/utils.tsx +++ b/src/containers/FinancialStatements/InventoryItemDetails/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as R from 'ramda'; import { getColumnWidth } from '@/utils'; diff --git a/src/containers/FinancialStatements/InventoryItemDetails/utils2.tsx b/src/containers/FinancialStatements/InventoryItemDetails/utils2.tsx index 62e14773f..345e84a95 100644 --- a/src/containers/FinancialStatements/InventoryItemDetails/utils2.tsx +++ b/src/containers/FinancialStatements/InventoryItemDetails/utils2.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import { castArray } from 'lodash'; diff --git a/src/containers/FinancialStatements/InventoryItemDetails/withInventoryItemDetails.tsx b/src/containers/FinancialStatements/InventoryItemDetails/withInventoryItemDetails.tsx index c706849f4..cbc33953a 100644 --- a/src/containers/FinancialStatements/InventoryItemDetails/withInventoryItemDetails.tsx +++ b/src/containers/FinancialStatements/InventoryItemDetails/withInventoryItemDetails.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getInventoryItemDetailsFilterDrawer } from '@/store/financialStatement/financialStatements.selectors'; diff --git a/src/containers/FinancialStatements/InventoryItemDetails/withInventoryItemDetailsActions.tsx b/src/containers/FinancialStatements/InventoryItemDetails/withInventoryItemDetailsActions.tsx index 56bca0f68..458b9ac88 100644 --- a/src/containers/FinancialStatements/InventoryItemDetails/withInventoryItemDetailsActions.tsx +++ b/src/containers/FinancialStatements/InventoryItemDetails/withInventoryItemDetailsActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { toggleInventoryItemDetailsFilterDrawer } from '@/store/financialStatement/financialStatements.actions'; diff --git a/src/containers/FinancialStatements/InventoryValuation/InventoryValuation.tsx b/src/containers/FinancialStatements/InventoryValuation/InventoryValuation.tsx index c08423e92..da4f8098a 100644 --- a/src/containers/FinancialStatements/InventoryValuation/InventoryValuation.tsx +++ b/src/containers/FinancialStatements/InventoryValuation/InventoryValuation.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect, useState, useCallback } from 'react'; import moment from 'moment'; diff --git a/src/containers/FinancialStatements/InventoryValuation/InventoryValuationActionsBar.tsx b/src/containers/FinancialStatements/InventoryValuation/InventoryValuationActionsBar.tsx index cedba35c1..eb5b8fdad 100644 --- a/src/containers/FinancialStatements/InventoryValuation/InventoryValuationActionsBar.tsx +++ b/src/containers/FinancialStatements/InventoryValuation/InventoryValuationActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { NavbarGroup, diff --git a/src/containers/FinancialStatements/InventoryValuation/InventoryValuationBody.tsx b/src/containers/FinancialStatements/InventoryValuation/InventoryValuationBody.tsx index ef3b2d8b9..fa7dc0e90 100644 --- a/src/containers/FinancialStatements/InventoryValuation/InventoryValuationBody.tsx +++ b/src/containers/FinancialStatements/InventoryValuation/InventoryValuationBody.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as R from 'ramda'; diff --git a/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeader.tsx b/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeader.tsx index 81a6c2045..4709425e6 100644 --- a/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeader.tsx +++ b/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as Yup from 'yup'; import moment from 'moment'; diff --git a/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeaderDimensionsPanel.tsx b/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeaderDimensionsPanel.tsx index a605e12d6..6c2f06384 100644 --- a/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeaderDimensionsPanel.tsx +++ b/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeaderDimensionsPanel.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { FormGroup, Classes } from '@blueprintjs/core'; diff --git a/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeaderDimensionsPanelProvider.tsx b/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeaderDimensionsPanelProvider.tsx index be44250c6..b42623ab8 100644 --- a/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeaderDimensionsPanelProvider.tsx +++ b/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeaderDimensionsPanelProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Features } from '@/constants'; diff --git a/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeaderGeneralPanel.tsx b/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeaderGeneralPanel.tsx index f518ae615..ef343192e 100644 --- a/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeaderGeneralPanel.tsx +++ b/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeaderGeneralPanel.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FastField, Field } from 'formik'; import { DateInput } from '@blueprintjs/datetime'; diff --git a/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeaderGeneralPanelProvider.tsx b/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeaderGeneralPanelProvider.tsx index 7887f63a8..a5222ba26 100644 --- a/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeaderGeneralPanelProvider.tsx +++ b/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeaderGeneralPanelProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FinancialHeaderLoadingSkeleton } from '../FinancialHeaderLoadingSkeleton'; import { useItems } from '@/hooks/query'; diff --git a/src/containers/FinancialStatements/InventoryValuation/InventoryValuationProvider.tsx b/src/containers/FinancialStatements/InventoryValuation/InventoryValuationProvider.tsx index 11886fb0c..360ac8bd2 100644 --- a/src/containers/FinancialStatements/InventoryValuation/InventoryValuationProvider.tsx +++ b/src/containers/FinancialStatements/InventoryValuation/InventoryValuationProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import FinancialReportPage from '../FinancialReportPage'; import { useInventoryValuation } from '@/hooks/query'; diff --git a/src/containers/FinancialStatements/InventoryValuation/InventoryValuationTable.tsx b/src/containers/FinancialStatements/InventoryValuation/InventoryValuationTable.tsx index b0997b18a..009832ebb 100644 --- a/src/containers/FinancialStatements/InventoryValuation/InventoryValuationTable.tsx +++ b/src/containers/FinancialStatements/InventoryValuation/InventoryValuationTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/FinancialStatements/InventoryValuation/components.tsx b/src/containers/FinancialStatements/InventoryValuation/components.tsx index 10ded1c67..7df7f250e 100644 --- a/src/containers/FinancialStatements/InventoryValuation/components.tsx +++ b/src/containers/FinancialStatements/InventoryValuation/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import intl from 'react-intl-universal'; diff --git a/src/containers/FinancialStatements/InventoryValuation/utils.tsx b/src/containers/FinancialStatements/InventoryValuation/utils.tsx index f6898be06..5e96d5745 100644 --- a/src/containers/FinancialStatements/InventoryValuation/utils.tsx +++ b/src/containers/FinancialStatements/InventoryValuation/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import { castArray } from 'lodash'; diff --git a/src/containers/FinancialStatements/InventoryValuation/withInventoryValuation.tsx b/src/containers/FinancialStatements/InventoryValuation/withInventoryValuation.tsx index b20b39b7a..db2094598 100644 --- a/src/containers/FinancialStatements/InventoryValuation/withInventoryValuation.tsx +++ b/src/containers/FinancialStatements/InventoryValuation/withInventoryValuation.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getInventoryValuationFilterDrawer } from '@/store/financialStatement/financialStatements.selectors'; diff --git a/src/containers/FinancialStatements/InventoryValuation/withInventoryValuationActions.tsx b/src/containers/FinancialStatements/InventoryValuation/withInventoryValuationActions.tsx index 98d60a5ee..781c832cc 100644 --- a/src/containers/FinancialStatements/InventoryValuation/withInventoryValuationActions.tsx +++ b/src/containers/FinancialStatements/InventoryValuation/withInventoryValuationActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { toggleInventoryValuationFilterDrawer } from '@/store/financialStatement/financialStatements.actions'; diff --git a/src/containers/FinancialStatements/Journal/Journal.tsx b/src/containers/FinancialStatements/Journal/Journal.tsx index c438611b7..9992e474f 100644 --- a/src/containers/FinancialStatements/Journal/Journal.tsx +++ b/src/containers/FinancialStatements/Journal/Journal.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback, useEffect } from 'react'; import moment from 'moment'; diff --git a/src/containers/FinancialStatements/Journal/JournalActionsBar.tsx b/src/containers/FinancialStatements/Journal/JournalActionsBar.tsx index 6fed7ac3b..b5ee2b467 100644 --- a/src/containers/FinancialStatements/Journal/JournalActionsBar.tsx +++ b/src/containers/FinancialStatements/Journal/JournalActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { NavbarGroup, diff --git a/src/containers/FinancialStatements/Journal/JournalBody.tsx b/src/containers/FinancialStatements/Journal/JournalBody.tsx index a64171987..524be05a3 100644 --- a/src/containers/FinancialStatements/Journal/JournalBody.tsx +++ b/src/containers/FinancialStatements/Journal/JournalBody.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as R from 'ramda'; diff --git a/src/containers/FinancialStatements/Journal/JournalHeader.tsx b/src/containers/FinancialStatements/Journal/JournalHeader.tsx index f171e0a64..6ee58ed06 100644 --- a/src/containers/FinancialStatements/Journal/JournalHeader.tsx +++ b/src/containers/FinancialStatements/Journal/JournalHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as Yup from 'yup'; import styled from 'styled-components'; diff --git a/src/containers/FinancialStatements/Journal/JournalProvider.tsx b/src/containers/FinancialStatements/Journal/JournalProvider.tsx index 4f9158a83..372dc2b70 100644 --- a/src/containers/FinancialStatements/Journal/JournalProvider.tsx +++ b/src/containers/FinancialStatements/Journal/JournalProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useContext } from 'react'; import FinancialReportPage from '../FinancialReportPage'; import { useJournalSheet } from '@/hooks/query'; diff --git a/src/containers/FinancialStatements/Journal/JournalSheetHeaderGeneral.tsx b/src/containers/FinancialStatements/Journal/JournalSheetHeaderGeneral.tsx index 1a2e34b2c..5e6327cec 100644 --- a/src/containers/FinancialStatements/Journal/JournalSheetHeaderGeneral.tsx +++ b/src/containers/FinancialStatements/Journal/JournalSheetHeaderGeneral.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import FinancialStatementDateRange from '../FinancialStatementDateRange'; diff --git a/src/containers/FinancialStatements/Journal/JournalTable.tsx b/src/containers/FinancialStatements/Journal/JournalTable.tsx index 2cce0fd2c..f1004dadc 100644 --- a/src/containers/FinancialStatements/Journal/JournalTable.tsx +++ b/src/containers/FinancialStatements/Journal/JournalTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/FinancialStatements/Journal/components.tsx b/src/containers/FinancialStatements/Journal/components.tsx index 360fe0b0e..d3ebab02c 100644 --- a/src/containers/FinancialStatements/Journal/components.tsx +++ b/src/containers/FinancialStatements/Journal/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import moment from 'moment'; diff --git a/src/containers/FinancialStatements/Journal/utils.tsx b/src/containers/FinancialStatements/Journal/utils.tsx index 6740e191d..bcc9c432c 100644 --- a/src/containers/FinancialStatements/Journal/utils.tsx +++ b/src/containers/FinancialStatements/Journal/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { castArray } from 'lodash'; import moment from 'moment'; diff --git a/src/containers/FinancialStatements/Journal/withJournal.tsx b/src/containers/FinancialStatements/Journal/withJournal.tsx index bf3e5d099..c388058b0 100644 --- a/src/containers/FinancialStatements/Journal/withJournal.tsx +++ b/src/containers/FinancialStatements/Journal/withJournal.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getJournalFilterDrawer, diff --git a/src/containers/FinancialStatements/Journal/withJournalActions.tsx b/src/containers/FinancialStatements/Journal/withJournalActions.tsx index afe383bc6..74e791fa2 100644 --- a/src/containers/FinancialStatements/Journal/withJournalActions.tsx +++ b/src/containers/FinancialStatements/Journal/withJournalActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { toggleJournalSheeetFilterDrawer } from '@/store/financialStatement/financialStatements.actions'; diff --git a/src/containers/FinancialStatements/LedgerSheet.tsx b/src/containers/FinancialStatements/LedgerSheet.tsx deleted file mode 100644 index e69de29bb..000000000 diff --git a/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossActionsBar.tsx b/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossActionsBar.tsx index 366343acf..34545766a 100644 --- a/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossActionsBar.tsx +++ b/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { NavbarGroup, diff --git a/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossBody.tsx b/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossBody.tsx index 9293f0b79..525f12bcf 100644 --- a/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossBody.tsx +++ b/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossBody.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import ProfitLossSheetTable from './ProfitLossSheetTable'; diff --git a/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossProvider.tsx b/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossProvider.tsx index c7a3f5487..b422013b6 100644 --- a/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossProvider.tsx +++ b/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useContext } from 'react'; import FinancialReportPage from '../FinancialReportPage'; import { useProfitLossSheet } from '@/hooks/query'; diff --git a/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheet.tsx b/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheet.tsx index acc021e8e..b1bd9b164 100644 --- a/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheet.tsx +++ b/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheet.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import * as R from 'ramda'; diff --git a/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeader.tsx b/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeader.tsx index 40c5d8859..d712b4c6a 100644 --- a/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeader.tsx +++ b/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import styled from 'styled-components'; diff --git a/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeaderComparisonPanel.tsx b/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeaderComparisonPanel.tsx index af26f69b3..c637e6ebc 100644 --- a/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeaderComparisonPanel.tsx +++ b/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeaderComparisonPanel.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { FastField } from 'formik'; diff --git a/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeaderDimensionsPanel.tsx b/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeaderDimensionsPanel.tsx index 72a84e29b..66b3e4a4f 100644 --- a/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeaderDimensionsPanel.tsx +++ b/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeaderDimensionsPanel.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { FormGroup, Classes } from '@blueprintjs/core'; diff --git a/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeaderDimensionsProvider.tsx b/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeaderDimensionsProvider.tsx index 76efc387d..aaa847818 100644 --- a/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeaderDimensionsProvider.tsx +++ b/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeaderDimensionsProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Features } from '@/constants'; diff --git a/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeaderGeneralPane.tsx b/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeaderGeneralPane.tsx index 1032e6646..34595a080 100644 --- a/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeaderGeneralPane.tsx +++ b/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeaderGeneralPane.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Row, Col } from '@/components'; diff --git a/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetTable.tsx b/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetTable.tsx index 475765ede..0573e8e1a 100644 --- a/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetTable.tsx +++ b/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/FinancialStatements/ProfitLossSheet/components.tsx b/src/containers/FinancialStatements/ProfitLossSheet/components.tsx index 76820bc51..32a516052 100644 --- a/src/containers/FinancialStatements/ProfitLossSheet/components.tsx +++ b/src/containers/FinancialStatements/ProfitLossSheet/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button } from '@blueprintjs/core'; import { Icon, If, FormattedMessage as T } from '@/components'; diff --git a/src/containers/FinancialStatements/ProfitLossSheet/dynamicColumns.tsx b/src/containers/FinancialStatements/ProfitLossSheet/dynamicColumns.tsx index 83fd7bde9..0c33d05f5 100644 --- a/src/containers/FinancialStatements/ProfitLossSheet/dynamicColumns.tsx +++ b/src/containers/FinancialStatements/ProfitLossSheet/dynamicColumns.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as R from 'ramda'; import { isEmpty } from 'lodash'; diff --git a/src/containers/FinancialStatements/ProfitLossSheet/hooks.tsx b/src/containers/FinancialStatements/ProfitLossSheet/hooks.tsx index aab7adb02..a4155568a 100644 --- a/src/containers/FinancialStatements/ProfitLossSheet/hooks.tsx +++ b/src/containers/FinancialStatements/ProfitLossSheet/hooks.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { dynamicColumns } from './dynamicColumns'; diff --git a/src/containers/FinancialStatements/ProfitLossSheet/utils.tsx b/src/containers/FinancialStatements/ProfitLossSheet/utils.tsx index 5ec35d231..b799789c6 100644 --- a/src/containers/FinancialStatements/ProfitLossSheet/utils.tsx +++ b/src/containers/FinancialStatements/ProfitLossSheet/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import intl from 'react-intl-universal'; diff --git a/src/containers/FinancialStatements/ProfitLossSheet/withProfitLoss.tsx b/src/containers/FinancialStatements/ProfitLossSheet/withProfitLoss.tsx index 6afa7d4fd..e3cdadad8 100644 --- a/src/containers/FinancialStatements/ProfitLossSheet/withProfitLoss.tsx +++ b/src/containers/FinancialStatements/ProfitLossSheet/withProfitLoss.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import {connect} from 'react-redux'; import { getProfitLossFilterDrawer, diff --git a/src/containers/FinancialStatements/ProfitLossSheet/withProfitLossActions.tsx b/src/containers/FinancialStatements/ProfitLossSheet/withProfitLossActions.tsx index 277218b8b..16f3107de 100644 --- a/src/containers/FinancialStatements/ProfitLossSheet/withProfitLossActions.tsx +++ b/src/containers/FinancialStatements/ProfitLossSheet/withProfitLossActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { toggleProfitLossFilterDrawer } from '@/store/financialStatement/financialStatements.actions'; diff --git a/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummary.tsx b/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummary.tsx index 0d7cf963f..b4a175335 100644 --- a/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummary.tsx +++ b/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummary.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect } from 'react'; import moment from 'moment'; diff --git a/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryActionsBar.tsx b/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryActionsBar.tsx index 185126e30..197ed136e 100644 --- a/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryActionsBar.tsx +++ b/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { NavbarGroup, diff --git a/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryBody.tsx b/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryBody.tsx index fe966949b..7ca917daf 100644 --- a/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryBody.tsx +++ b/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryBody.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import ProjectProfitabilitySummaryTable from './ProjectProfitabilitySummaryTable'; diff --git a/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryHeader.tsx b/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryHeader.tsx index 867316819..f834ad911 100644 --- a/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryHeader.tsx +++ b/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import moment from 'moment'; diff --git a/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryHeaderGeneralPanal.tsx b/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryHeaderGeneralPanal.tsx index 5c43083a2..22dd8f2d4 100644 --- a/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryHeaderGeneralPanal.tsx +++ b/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryHeaderGeneralPanal.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { filterProjectProfitabilityOptions } from './constants'; diff --git a/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryProvider.tsx b/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryProvider.tsx index 7c466a9ee..873f68f16 100644 --- a/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryProvider.tsx +++ b/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useMemo, useContext } from 'react'; import FinancialReportPage from '../FinancialReportPage'; diff --git a/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryTable.tsx b/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryTable.tsx index 1028612e8..62c253157 100644 --- a/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryTable.tsx +++ b/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import styled from 'styled-components'; import intl from 'react-intl-universal'; diff --git a/src/containers/FinancialStatements/ProjectProfitabilitySummary/components.tsx b/src/containers/FinancialStatements/ProjectProfitabilitySummary/components.tsx index 35c040204..8b8ef49c1 100644 --- a/src/containers/FinancialStatements/ProjectProfitabilitySummary/components.tsx +++ b/src/containers/FinancialStatements/ProjectProfitabilitySummary/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import { Button } from '@blueprintjs/core'; diff --git a/src/containers/FinancialStatements/ProjectProfitabilitySummary/constants.ts b/src/containers/FinancialStatements/ProjectProfitabilitySummary/constants.ts index a21975ff2..0a003f46d 100644 --- a/src/containers/FinancialStatements/ProjectProfitabilitySummary/constants.ts +++ b/src/containers/FinancialStatements/ProjectProfitabilitySummary/constants.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; export const filterProjectProfitabilityOptions = [ diff --git a/src/containers/FinancialStatements/ProjectProfitabilitySummary/dynamicColumns.tsx b/src/containers/FinancialStatements/ProjectProfitabilitySummary/dynamicColumns.tsx index 0658b4b5c..da8545f74 100644 --- a/src/containers/FinancialStatements/ProjectProfitabilitySummary/dynamicColumns.tsx +++ b/src/containers/FinancialStatements/ProjectProfitabilitySummary/dynamicColumns.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as R from 'ramda'; import { getColumnWidth } from '@/utils'; diff --git a/src/containers/FinancialStatements/ProjectProfitabilitySummary/hooks.ts b/src/containers/FinancialStatements/ProjectProfitabilitySummary/hooks.ts index fcc37d0c3..20c00268d 100644 --- a/src/containers/FinancialStatements/ProjectProfitabilitySummary/hooks.ts +++ b/src/containers/FinancialStatements/ProjectProfitabilitySummary/hooks.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import { useRequestQuery } from '@/hooks/useQueryRequest'; import t from '@/hooks/query/types'; diff --git a/src/containers/FinancialStatements/ProjectProfitabilitySummary/utils.tsx b/src/containers/FinancialStatements/ProjectProfitabilitySummary/utils.tsx index 9ef23f633..03e71e7d5 100644 --- a/src/containers/FinancialStatements/ProjectProfitabilitySummary/utils.tsx +++ b/src/containers/FinancialStatements/ProjectProfitabilitySummary/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import moment from 'moment'; import { castArray } from 'lodash'; diff --git a/src/containers/FinancialStatements/ProjectProfitabilitySummary/withProjectProfitabilitySummary.tsx b/src/containers/FinancialStatements/ProjectProfitabilitySummary/withProjectProfitabilitySummary.tsx index fad00d438..89902b0e0 100644 --- a/src/containers/FinancialStatements/ProjectProfitabilitySummary/withProjectProfitabilitySummary.tsx +++ b/src/containers/FinancialStatements/ProjectProfitabilitySummary/withProjectProfitabilitySummary.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getProjectProfitabilitySummaryFilterDrawer } from '@/store/financialStatement/financialStatements.selectors'; diff --git a/src/containers/FinancialStatements/ProjectProfitabilitySummary/withProjectProfitabilitySummaryActions.tsx b/src/containers/FinancialStatements/ProjectProfitabilitySummary/withProjectProfitabilitySummaryActions.tsx index 9818e25ff..5c1dd2519 100644 --- a/src/containers/FinancialStatements/ProjectProfitabilitySummary/withProjectProfitabilitySummaryActions.tsx +++ b/src/containers/FinancialStatements/ProjectProfitabilitySummary/withProjectProfitabilitySummaryActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { toggleProjectProfitabilitySummaryFilterDrawer } from '@/store/financialStatement/financialStatements.actions'; diff --git a/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItems.tsx b/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItems.tsx index 9baffcfb9..485922d87 100644 --- a/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItems.tsx +++ b/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItems.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect, useState, useCallback } from 'react'; import moment from 'moment'; diff --git a/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsActionsBar.tsx b/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsActionsBar.tsx index 4782145ff..4a5a81738 100644 --- a/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsActionsBar.tsx +++ b/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { NavbarGroup, diff --git a/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsBody.tsx b/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsBody.tsx index fc6283ed7..95b317cc8 100644 --- a/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsBody.tsx +++ b/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsBody.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as R from 'ramda'; diff --git a/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsGeneralPanel.tsx b/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsGeneralPanel.tsx index 80e3ebbb6..c9bd572b3 100644 --- a/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsGeneralPanel.tsx +++ b/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsGeneralPanel.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FormGroup, Classes } from '@blueprintjs/core'; import { Field } from 'formik'; diff --git a/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsGeneralPanelProvider.tsx b/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsGeneralPanelProvider.tsx index 349f86ea6..69746a7e4 100644 --- a/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsGeneralPanelProvider.tsx +++ b/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsGeneralPanelProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useContext } from 'react'; import { useItems } from '@/hooks/query'; import { FinancialHeaderLoadingSkeleton } from '../FinancialHeaderLoadingSkeleton'; diff --git a/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsHeader.tsx b/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsHeader.tsx index 68406718f..5ea0f6da8 100644 --- a/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsHeader.tsx +++ b/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as Yup from 'yup'; import moment from 'moment'; diff --git a/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsProvider.tsx b/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsProvider.tsx index b218fd11b..c08f713bc 100644 --- a/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsProvider.tsx +++ b/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useContext } from 'react'; import FinancialReportPage from '../FinancialReportPage'; import { usePurchasesByItems } from '@/hooks/query'; diff --git a/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsTable.tsx b/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsTable.tsx index f6c86110a..495c06ab9 100644 --- a/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsTable.tsx +++ b/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/FinancialStatements/PurchasesByItems/components.tsx b/src/containers/FinancialStatements/PurchasesByItems/components.tsx index 2100f2093..24dfd258e 100644 --- a/src/containers/FinancialStatements/PurchasesByItems/components.tsx +++ b/src/containers/FinancialStatements/PurchasesByItems/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; diff --git a/src/containers/FinancialStatements/PurchasesByItems/utils.tsx b/src/containers/FinancialStatements/PurchasesByItems/utils.tsx index 2bed8630f..b4309f30c 100644 --- a/src/containers/FinancialStatements/PurchasesByItems/utils.tsx +++ b/src/containers/FinancialStatements/PurchasesByItems/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import moment from 'moment'; diff --git a/src/containers/FinancialStatements/PurchasesByItems/withPurchasesByItems.tsx b/src/containers/FinancialStatements/PurchasesByItems/withPurchasesByItems.tsx index 9b3b255f1..c779000b9 100644 --- a/src/containers/FinancialStatements/PurchasesByItems/withPurchasesByItems.tsx +++ b/src/containers/FinancialStatements/PurchasesByItems/withPurchasesByItems.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getPurchasesByItemsFilterDrawer } from '@/store/financialStatement/financialStatements.selectors'; diff --git a/src/containers/FinancialStatements/PurchasesByItems/withPurchasesByItemsActions.tsx b/src/containers/FinancialStatements/PurchasesByItems/withPurchasesByItemsActions.tsx index 1dec7af17..60312c9ad 100644 --- a/src/containers/FinancialStatements/PurchasesByItems/withPurchasesByItemsActions.tsx +++ b/src/containers/FinancialStatements/PurchasesByItems/withPurchasesByItemsActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { togglePurchasesByItemsFilterDrawer } from '@/store/financialStatement/financialStatements.actions'; diff --git a/src/containers/FinancialStatements/RadiosAccountingBasis.tsx b/src/containers/FinancialStatements/RadiosAccountingBasis.tsx index 2ba8b87b4..41ba632a3 100644 --- a/src/containers/FinancialStatements/RadiosAccountingBasis.tsx +++ b/src/containers/FinancialStatements/RadiosAccountingBasis.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { FastField } from 'formik'; diff --git a/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLoss.tsx b/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLoss.tsx index 4e50e323c..6e4c3a3b7 100644 --- a/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLoss.tsx +++ b/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLoss.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FinancialStatement, DashboardPageContent } from '@/components'; diff --git a/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossActionsBar.tsx b/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossActionsBar.tsx index f762b5b03..5997d43dc 100644 --- a/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossActionsBar.tsx +++ b/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { NavbarGroup, diff --git a/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossGeneralPanel.tsx b/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossGeneralPanel.tsx index b1fb8b416..9e6718679 100644 --- a/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossGeneralPanel.tsx +++ b/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossGeneralPanel.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Row, Col } from '@/components'; diff --git a/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossHeader.tsx b/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossHeader.tsx index 8b5e39a91..bc882dad5 100644 --- a/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossHeader.tsx +++ b/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import * as Yup from 'yup'; diff --git a/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossProvider.tsx b/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossProvider.tsx index 0c8fb18fc..173155537 100644 --- a/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossProvider.tsx +++ b/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import FinancialReportPage from '../FinancialReportPage'; diff --git a/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossTable.tsx b/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossTable.tsx index 9950ecbf1..8fc7acc52 100644 --- a/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossTable.tsx +++ b/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; diff --git a/src/containers/FinancialStatements/RealizedGainOrLoss/components.tsx b/src/containers/FinancialStatements/RealizedGainOrLoss/components.tsx index 6dccf9072..3d4568af6 100644 --- a/src/containers/FinancialStatements/RealizedGainOrLoss/components.tsx +++ b/src/containers/FinancialStatements/RealizedGainOrLoss/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { If } from '@/components'; diff --git a/src/containers/FinancialStatements/RealizedGainOrLoss/withRealizedGainOrLoss.tsx b/src/containers/FinancialStatements/RealizedGainOrLoss/withRealizedGainOrLoss.tsx index 2a21f142d..d96f8711f 100644 --- a/src/containers/FinancialStatements/RealizedGainOrLoss/withRealizedGainOrLoss.tsx +++ b/src/containers/FinancialStatements/RealizedGainOrLoss/withRealizedGainOrLoss.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getRealizedGainOrLossFilterDrawer } from '@/store/financialStatement/financialStatements.selectors'; diff --git a/src/containers/FinancialStatements/RealizedGainOrLoss/withRealizedGainOrLossActions.tsx b/src/containers/FinancialStatements/RealizedGainOrLoss/withRealizedGainOrLossActions.tsx index 7738b0b54..fc1fb637e 100644 --- a/src/containers/FinancialStatements/RealizedGainOrLoss/withRealizedGainOrLossActions.tsx +++ b/src/containers/FinancialStatements/RealizedGainOrLoss/withRealizedGainOrLossActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { toggleRealizedGainOrLossFilterDrawer } from '@/store/financialStatement/financialStatements.actions'; diff --git a/src/containers/FinancialStatements/SalesByItems/SalesByItemProvider.tsx b/src/containers/FinancialStatements/SalesByItems/SalesByItemProvider.tsx index ec93e9bb0..8b06996dc 100644 --- a/src/containers/FinancialStatements/SalesByItems/SalesByItemProvider.tsx +++ b/src/containers/FinancialStatements/SalesByItems/SalesByItemProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useContext } from 'react'; import FinancialReportPage from '../FinancialReportPage'; import { useSalesByItems } from '@/hooks/query'; diff --git a/src/containers/FinancialStatements/SalesByItems/SalesByItems.tsx b/src/containers/FinancialStatements/SalesByItems/SalesByItems.tsx index 4f7016232..b094d1b69 100644 --- a/src/containers/FinancialStatements/SalesByItems/SalesByItems.tsx +++ b/src/containers/FinancialStatements/SalesByItems/SalesByItems.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect, useState, useCallback } from 'react'; import moment from 'moment'; diff --git a/src/containers/FinancialStatements/SalesByItems/SalesByItemsActionsBar.tsx b/src/containers/FinancialStatements/SalesByItems/SalesByItemsActionsBar.tsx index eec32e77d..56b025f35 100644 --- a/src/containers/FinancialStatements/SalesByItems/SalesByItemsActionsBar.tsx +++ b/src/containers/FinancialStatements/SalesByItems/SalesByItemsActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { NavbarGroup, diff --git a/src/containers/FinancialStatements/SalesByItems/SalesByItemsBody.tsx b/src/containers/FinancialStatements/SalesByItems/SalesByItemsBody.tsx index 10eb5dd2e..ef71d65a7 100644 --- a/src/containers/FinancialStatements/SalesByItems/SalesByItemsBody.tsx +++ b/src/containers/FinancialStatements/SalesByItems/SalesByItemsBody.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as R from 'ramda'; diff --git a/src/containers/FinancialStatements/SalesByItems/SalesByItemsHeader.tsx b/src/containers/FinancialStatements/SalesByItems/SalesByItemsHeader.tsx index c03c457e0..0fc4fa1f6 100644 --- a/src/containers/FinancialStatements/SalesByItems/SalesByItemsHeader.tsx +++ b/src/containers/FinancialStatements/SalesByItems/SalesByItemsHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as Yup from 'yup'; import moment from 'moment'; diff --git a/src/containers/FinancialStatements/SalesByItems/SalesByItemsHeaderGeneralPanel.tsx b/src/containers/FinancialStatements/SalesByItems/SalesByItemsHeaderGeneralPanel.tsx index e6913e82f..46f2f6416 100644 --- a/src/containers/FinancialStatements/SalesByItems/SalesByItemsHeaderGeneralPanel.tsx +++ b/src/containers/FinancialStatements/SalesByItems/SalesByItemsHeaderGeneralPanel.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FormGroup, Classes } from '@blueprintjs/core'; import { Field } from 'formik'; diff --git a/src/containers/FinancialStatements/SalesByItems/SalesByItemsHeaderGeneralPanelProvider.tsx b/src/containers/FinancialStatements/SalesByItems/SalesByItemsHeaderGeneralPanelProvider.tsx index 16ee030c0..501ec48ac 100644 --- a/src/containers/FinancialStatements/SalesByItems/SalesByItemsHeaderGeneralPanelProvider.tsx +++ b/src/containers/FinancialStatements/SalesByItems/SalesByItemsHeaderGeneralPanelProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useContext } from 'react'; import { useItems } from '@/hooks/query'; import { FinancialHeaderLoadingSkeleton } from '../FinancialHeaderLoadingSkeleton'; diff --git a/src/containers/FinancialStatements/SalesByItems/SalesByItemsTable.tsx b/src/containers/FinancialStatements/SalesByItems/SalesByItemsTable.tsx index 9dc682571..77e4da7e4 100644 --- a/src/containers/FinancialStatements/SalesByItems/SalesByItemsTable.tsx +++ b/src/containers/FinancialStatements/SalesByItems/SalesByItemsTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/FinancialStatements/SalesByItems/components.tsx b/src/containers/FinancialStatements/SalesByItems/components.tsx index cb74b233f..4219abf83 100644 --- a/src/containers/FinancialStatements/SalesByItems/components.tsx +++ b/src/containers/FinancialStatements/SalesByItems/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import intl from 'react-intl-universal'; diff --git a/src/containers/FinancialStatements/SalesByItems/utils.tsx b/src/containers/FinancialStatements/SalesByItems/utils.tsx index 3ae064b96..102b157b9 100644 --- a/src/containers/FinancialStatements/SalesByItems/utils.tsx +++ b/src/containers/FinancialStatements/SalesByItems/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import moment from 'moment'; export const getDefaultSalesByItemsQuery = () => { diff --git a/src/containers/FinancialStatements/SalesByItems/withSalesByItems.tsx b/src/containers/FinancialStatements/SalesByItems/withSalesByItems.tsx index 159af5031..adf12536f 100644 --- a/src/containers/FinancialStatements/SalesByItems/withSalesByItems.tsx +++ b/src/containers/FinancialStatements/SalesByItems/withSalesByItems.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getSalesByItemsFilterDrawer } from '@/store/financialStatement/financialStatements.selectors'; diff --git a/src/containers/FinancialStatements/SalesByItems/withSalesByItemsActions.tsx b/src/containers/FinancialStatements/SalesByItems/withSalesByItemsActions.tsx index e6c20a8d4..6a7ac89a4 100644 --- a/src/containers/FinancialStatements/SalesByItems/withSalesByItemsActions.tsx +++ b/src/containers/FinancialStatements/SalesByItems/withSalesByItemsActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { toggleSalesByItemsFilterDrawer } from '@/store/financialStatement/financialStatements.actions'; diff --git a/src/containers/FinancialStatements/SelectDisplayColumnsBy.tsx b/src/containers/FinancialStatements/SelectDisplayColumnsBy.tsx index c42e07f27..31026f17e 100644 --- a/src/containers/FinancialStatements/SelectDisplayColumnsBy.tsx +++ b/src/containers/FinancialStatements/SelectDisplayColumnsBy.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FormGroup } from '@blueprintjs/core'; import { FastField } from 'formik'; diff --git a/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceActionsBar.tsx b/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceActionsBar.tsx index 0847ccf38..b409a44cd 100644 --- a/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceActionsBar.tsx +++ b/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { NavbarGroup, diff --git a/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceProvider.tsx b/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceProvider.tsx index acb9c8d74..ab962bca7 100644 --- a/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceProvider.tsx +++ b/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useContext } from 'react'; import FinancialReportPage from '../FinancialReportPage'; import { useTrialBalanceSheet } from '@/hooks/query'; diff --git a/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheet.tsx b/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheet.tsx index 3158e3bf2..904edbccc 100644 --- a/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheet.tsx +++ b/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheet.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback, useEffect } from 'react'; import moment from 'moment'; diff --git a/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetBody.tsx b/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetBody.tsx index 5f1d4ef99..b27ac6647 100644 --- a/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetBody.tsx +++ b/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetBody.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as R from 'ramda'; diff --git a/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetHeader.tsx b/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetHeader.tsx index ff0bfd662..d28777cf3 100644 --- a/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetHeader.tsx +++ b/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as Yup from 'yup'; import styled from 'styled-components'; diff --git a/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetHeaderDimensionsPanel.tsx b/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetHeaderDimensionsPanel.tsx index bc2d18e4d..67dc79f06 100644 --- a/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetHeaderDimensionsPanel.tsx +++ b/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetHeaderDimensionsPanel.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { FormGroup, Classes } from '@blueprintjs/core'; diff --git a/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetHeaderDimensionsPanelProvider.tsx b/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetHeaderDimensionsPanelProvider.tsx index 418a50f4c..11b838487 100644 --- a/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetHeaderDimensionsPanelProvider.tsx +++ b/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetHeaderDimensionsPanelProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Features } from '@/constants'; import { useBranches } from '@/hooks/query'; diff --git a/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetHeaderGeneralPanel.tsx b/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetHeaderGeneralPanel.tsx index 63a111fa5..dd87f3cb8 100644 --- a/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetHeaderGeneralPanel.tsx +++ b/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetHeaderGeneralPanel.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Row, Col } from '@/components'; diff --git a/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetTable.tsx b/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetTable.tsx index 19446b0ab..9909f4e27 100644 --- a/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetTable.tsx +++ b/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/FinancialStatements/TrialBalanceSheet/components.tsx b/src/containers/FinancialStatements/TrialBalanceSheet/components.tsx index 8e5ea721d..38f7e3051 100644 --- a/src/containers/FinancialStatements/TrialBalanceSheet/components.tsx +++ b/src/containers/FinancialStatements/TrialBalanceSheet/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Button } from '@blueprintjs/core'; diff --git a/src/containers/FinancialStatements/TrialBalanceSheet/utils.tsx b/src/containers/FinancialStatements/TrialBalanceSheet/utils.tsx index 5384c7273..e31deb3f4 100644 --- a/src/containers/FinancialStatements/TrialBalanceSheet/utils.tsx +++ b/src/containers/FinancialStatements/TrialBalanceSheet/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import { castArray } from 'lodash'; diff --git a/src/containers/FinancialStatements/TrialBalanceSheet/withTrialBalance.tsx b/src/containers/FinancialStatements/TrialBalanceSheet/withTrialBalance.tsx index aaec84638..bfa47d3d0 100644 --- a/src/containers/FinancialStatements/TrialBalanceSheet/withTrialBalance.tsx +++ b/src/containers/FinancialStatements/TrialBalanceSheet/withTrialBalance.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getTrialBalanceSheetFilterDrawer } from '@/store/financialStatement/financialStatements.selectors'; diff --git a/src/containers/FinancialStatements/TrialBalanceSheet/withTrialBalanceActions.tsx b/src/containers/FinancialStatements/TrialBalanceSheet/withTrialBalanceActions.tsx index e88be6b8b..eb2259b5a 100644 --- a/src/containers/FinancialStatements/TrialBalanceSheet/withTrialBalanceActions.tsx +++ b/src/containers/FinancialStatements/TrialBalanceSheet/withTrialBalanceActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { toggleTrialBalanceSheetFilterDrawer } from '@/store/financialStatement/financialStatements.actions'; diff --git a/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLoss.tsx b/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLoss.tsx index f7a22cfea..2797a5f94 100644 --- a/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLoss.tsx +++ b/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLoss.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FinancialStatement, DashboardPageContent } from '@/components'; diff --git a/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossActionsBar.tsx b/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossActionsBar.tsx index 48db0c822..363ee51b4 100644 --- a/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossActionsBar.tsx +++ b/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { NavbarGroup, diff --git a/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossGeneralPanel.tsx b/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossGeneralPanel.tsx index 671e49675..8a2f93e36 100644 --- a/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossGeneralPanel.tsx +++ b/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossGeneralPanel.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Row, Col } from '@/components'; diff --git a/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossHeader.tsx b/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossHeader.tsx index 553008166..7235b0fe1 100644 --- a/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossHeader.tsx +++ b/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import * as Yup from 'yup'; diff --git a/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossProvider.tsx b/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossProvider.tsx index a9400489a..b75a3f6df 100644 --- a/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossProvider.tsx +++ b/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import FinancialReportPage from '../FinancialReportPage'; diff --git a/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossTable.tsx b/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossTable.tsx index d66ad5e64..35dbf18d2 100644 --- a/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossTable.tsx +++ b/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; diff --git a/src/containers/FinancialStatements/UnrealizedGainOrLoss/components.tsx b/src/containers/FinancialStatements/UnrealizedGainOrLoss/components.tsx index e57c439fc..5a5f01e27 100644 --- a/src/containers/FinancialStatements/UnrealizedGainOrLoss/components.tsx +++ b/src/containers/FinancialStatements/UnrealizedGainOrLoss/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button } from '@blueprintjs/core'; import { If } from '@/components'; diff --git a/src/containers/FinancialStatements/UnrealizedGainOrLoss/withUnrealizedGainOrLoss.tsx b/src/containers/FinancialStatements/UnrealizedGainOrLoss/withUnrealizedGainOrLoss.tsx index b2cdac62f..b20584c5b 100644 --- a/src/containers/FinancialStatements/UnrealizedGainOrLoss/withUnrealizedGainOrLoss.tsx +++ b/src/containers/FinancialStatements/UnrealizedGainOrLoss/withUnrealizedGainOrLoss.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getUnrealizedGainOrLossFilterDrawer } from '@/store/financialStatement/financialStatements.selectors'; diff --git a/src/containers/FinancialStatements/UnrealizedGainOrLoss/withUnrealizedGainOrLossActions.tsx b/src/containers/FinancialStatements/UnrealizedGainOrLoss/withUnrealizedGainOrLossActions.tsx index 629c35613..7516e6b6c 100644 --- a/src/containers/FinancialStatements/UnrealizedGainOrLoss/withUnrealizedGainOrLossActions.tsx +++ b/src/containers/FinancialStatements/UnrealizedGainOrLoss/withUnrealizedGainOrLossActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { toggleUnrealizedGainOrLossFilterDrawer } from '@/store/financialStatement/financialStatements.actions'; diff --git a/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummary.tsx b/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummary.tsx index dda770ffd..85ee52a96 100644 --- a/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummary.tsx +++ b/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummary.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect, useState } from 'react'; import moment from 'moment'; diff --git a/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryActionsBar.tsx b/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryActionsBar.tsx index 4e1b4f0d5..c89d21f20 100644 --- a/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryActionsBar.tsx +++ b/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { NavbarDivider, diff --git a/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryBody.tsx b/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryBody.tsx index c11287566..10d2fd86c 100644 --- a/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryBody.tsx +++ b/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryBody.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as R from 'ramda'; diff --git a/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryHeader.tsx b/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryHeader.tsx index 874e0d788..c102596e8 100644 --- a/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryHeader.tsx +++ b/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as Yup from 'yup'; import moment from 'moment'; diff --git a/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryHeaderGeneral.tsx b/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryHeaderGeneral.tsx index 94438b15f..dc1ec54ab 100644 --- a/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryHeaderGeneral.tsx +++ b/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryHeaderGeneral.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import VendorsBalanceSummaryHeaderGeneralContent from './VendorsBalanceSummaryHeaderGeneralContent'; import { VendorsBalanceSummaryGeneralPanelProvider } from './VendorsBalanceSummaryHeaderGeneralProvider'; diff --git a/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryHeaderGeneralContent.tsx b/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryHeaderGeneralContent.tsx index 251b16121..b3d04857f 100644 --- a/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryHeaderGeneralContent.tsx +++ b/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryHeaderGeneralContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Field, FastField } from 'formik'; import { DateInput } from '@blueprintjs/datetime'; diff --git a/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryHeaderGeneralProvider.tsx b/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryHeaderGeneralProvider.tsx index 9b8dce4e2..83a4a069b 100644 --- a/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryHeaderGeneralProvider.tsx +++ b/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryHeaderGeneralProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FinancialHeaderLoadingSkeleton } from '../FinancialHeaderLoadingSkeleton'; diff --git a/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryProvider.tsx b/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryProvider.tsx index 781ad2a02..ebf9d9fac 100644 --- a/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryProvider.tsx +++ b/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import FinancialReportPage from '../FinancialReportPage'; import { useVendorsBalanceSummaryReport } from '@/hooks/query'; diff --git a/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryTable.tsx b/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryTable.tsx index 226621118..9a57d5d40 100644 --- a/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryTable.tsx +++ b/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/FinancialStatements/VendorsBalanceSummary/components.tsx b/src/containers/FinancialStatements/VendorsBalanceSummary/components.tsx index 1ff8f282f..22efb5c47 100644 --- a/src/containers/FinancialStatements/VendorsBalanceSummary/components.tsx +++ b/src/containers/FinancialStatements/VendorsBalanceSummary/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import * as R from 'ramda'; diff --git a/src/containers/FinancialStatements/VendorsBalanceSummary/utils.tsx b/src/containers/FinancialStatements/VendorsBalanceSummary/utils.tsx index a2bf4a09d..195b35b31 100644 --- a/src/containers/FinancialStatements/VendorsBalanceSummary/utils.tsx +++ b/src/containers/FinancialStatements/VendorsBalanceSummary/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import moment from 'moment'; export const getDefaultVendorsBalanceQuery = () => { diff --git a/src/containers/FinancialStatements/VendorsBalanceSummary/withVendorsBalanceSummary.tsx b/src/containers/FinancialStatements/VendorsBalanceSummary/withVendorsBalanceSummary.tsx index c139d9351..5c9c3f045 100644 --- a/src/containers/FinancialStatements/VendorsBalanceSummary/withVendorsBalanceSummary.tsx +++ b/src/containers/FinancialStatements/VendorsBalanceSummary/withVendorsBalanceSummary.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getVendorsBalanceSummaryFilterDrawer } from '@/store/financialStatement/financialStatements.selectors'; diff --git a/src/containers/FinancialStatements/VendorsBalanceSummary/withVendorsBalanceSummaryActions.tsx b/src/containers/FinancialStatements/VendorsBalanceSummary/withVendorsBalanceSummaryActions.tsx index 87a511372..7f5d9ddaa 100644 --- a/src/containers/FinancialStatements/VendorsBalanceSummary/withVendorsBalanceSummaryActions.tsx +++ b/src/containers/FinancialStatements/VendorsBalanceSummary/withVendorsBalanceSummaryActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { toggleVendorsBalanceSummaryFilterDrawer } from '@/store/financialStatement/financialStatements.actions'; diff --git a/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactions.tsx b/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactions.tsx index dd6ed4a4a..c55a2e8fe 100644 --- a/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactions.tsx +++ b/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect, useState } from 'react'; import moment from 'moment'; diff --git a/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsActionsBar.tsx b/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsActionsBar.tsx index 69cebfd8f..52595565f 100644 --- a/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsActionsBar.tsx +++ b/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { NavbarGroup, diff --git a/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsBody.tsx b/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsBody.tsx index 1edc5bef1..020aa8abb 100644 --- a/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsBody.tsx +++ b/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsBody.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as R from 'ramda'; diff --git a/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsHeader.tsx b/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsHeader.tsx index d478f8fda..a61c5119e 100644 --- a/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsHeader.tsx +++ b/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as Yup from 'yup'; import moment from 'moment'; diff --git a/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsHeaderGeneralPanel.tsx b/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsHeaderGeneralPanel.tsx index 206034efc..ab4db23ab 100644 --- a/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsHeaderGeneralPanel.tsx +++ b/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsHeaderGeneralPanel.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Field } from 'formik'; import { Classes, FormGroup } from '@blueprintjs/core'; diff --git a/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsHeaderGeneralPanelProvider.tsx b/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsHeaderGeneralPanelProvider.tsx index 9d5c01298..bda25f28c 100644 --- a/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsHeaderGeneralPanelProvider.tsx +++ b/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsHeaderGeneralPanelProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useContext } from 'react'; import { useVendors } from '@/hooks/query'; import { FinancialHeaderLoadingSkeleton } from '../FinancialHeaderLoadingSkeleton'; diff --git a/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsProvider.tsx b/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsProvider.tsx index a44dbeb36..b9c35760d 100644 --- a/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsProvider.tsx +++ b/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useContext, useMemo } from 'react'; import FinancialReportPage from '../FinancialReportPage'; import { useVendorsTransactionsReport } from '@/hooks/query'; diff --git a/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsTable.tsx b/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsTable.tsx index c08b7b705..45f5fd3e9 100644 --- a/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsTable.tsx +++ b/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/FinancialStatements/VendorsTransactions/components.tsx b/src/containers/FinancialStatements/VendorsTransactions/components.tsx index 85f485503..ee078f215 100644 --- a/src/containers/FinancialStatements/VendorsTransactions/components.tsx +++ b/src/containers/FinancialStatements/VendorsTransactions/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; diff --git a/src/containers/FinancialStatements/VendorsTransactions/withVendorsTransaction.tsx b/src/containers/FinancialStatements/VendorsTransactions/withVendorsTransaction.tsx index a416aa925..2c74189f1 100644 --- a/src/containers/FinancialStatements/VendorsTransactions/withVendorsTransaction.tsx +++ b/src/containers/FinancialStatements/VendorsTransactions/withVendorsTransaction.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getVendorsTransactionsFilterDrawer } from '@/store/financialStatement/financialStatements.selectors'; diff --git a/src/containers/FinancialStatements/VendorsTransactions/withVendorsTransactionsActions.tsx b/src/containers/FinancialStatements/VendorsTransactions/withVendorsTransactionsActions.tsx index 56d1a194d..5b68d1c66 100644 --- a/src/containers/FinancialStatements/VendorsTransactions/withVendorsTransactionsActions.tsx +++ b/src/containers/FinancialStatements/VendorsTransactions/withVendorsTransactionsActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { toggleVendorsTransactionsFilterDrawer } from '@/store/financialStatement/financialStatements.actions'; diff --git a/src/containers/FinancialStatements/common.tsx b/src/containers/FinancialStatements/common.tsx index d9112c60c..3472e4561 100644 --- a/src/containers/FinancialStatements/common.tsx +++ b/src/containers/FinancialStatements/common.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as R from 'ramda'; import { displayColumnsByOptions } from './constants'; import { transfromToSnakeCase, flatten } from '@/utils'; diff --git a/src/containers/FinancialStatements/constants.tsx b/src/containers/FinancialStatements/constants.tsx index 315a00041..f26f57942 100644 --- a/src/containers/FinancialStatements/constants.tsx +++ b/src/containers/FinancialStatements/constants.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; diff --git a/src/containers/FinancialStatements/reducers.tsx b/src/containers/FinancialStatements/reducers.tsx index 545cc4ec3..5a08cd2c5 100644 --- a/src/containers/FinancialStatements/reducers.tsx +++ b/src/containers/FinancialStatements/reducers.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import { chain } from 'lodash'; diff --git a/src/containers/GlobalErrors/GlobalErrors.tsx b/src/containers/GlobalErrors/GlobalErrors.tsx index 06d91b17e..211402c0f 100644 --- a/src/containers/GlobalErrors/GlobalErrors.tsx +++ b/src/containers/GlobalErrors/GlobalErrors.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { Intent } from '@blueprintjs/core'; import intl from 'react-intl-universal'; import { AppToaster } from '@/components'; diff --git a/src/containers/GlobalErrors/withGlobalErrors.tsx b/src/containers/GlobalErrors/withGlobalErrors.tsx index 1a3948e58..49039d72f 100644 --- a/src/containers/GlobalErrors/withGlobalErrors.tsx +++ b/src/containers/GlobalErrors/withGlobalErrors.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; diff --git a/src/containers/GlobalErrors/withGlobalErrorsActions.tsx b/src/containers/GlobalErrors/withGlobalErrorsActions.tsx index c3921c122..fbaa887a1 100644 --- a/src/containers/GlobalErrors/withGlobalErrorsActions.tsx +++ b/src/containers/GlobalErrors/withGlobalErrorsActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { setGlobalErrors } from '@/store/globalErrors/globalErrors.actions'; diff --git a/src/containers/Homepage/AccountsPayableSection.tsx b/src/containers/Homepage/AccountsPayableSection.tsx index 93ed47a23..6e01c3aee 100644 --- a/src/containers/Homepage/AccountsPayableSection.tsx +++ b/src/containers/Homepage/AccountsPayableSection.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import ShortcutBoxesSection from './ShortcutBoxesSection'; import { accountsPayable } from '@/constants/homepageOptions'; diff --git a/src/containers/Homepage/AccountsReceivableSection.tsx b/src/containers/Homepage/AccountsReceivableSection.tsx index bb0ba4434..c2a40209a 100644 --- a/src/containers/Homepage/AccountsReceivableSection.tsx +++ b/src/containers/Homepage/AccountsReceivableSection.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import ShortcutBoxesSection from './ShortcutBoxesSection'; import { accountsReceivable } from '@/constants/homepageOptions'; diff --git a/src/containers/Homepage/FinancialAccountingSection.tsx b/src/containers/Homepage/FinancialAccountingSection.tsx index 9dcae8120..6911347a0 100644 --- a/src/containers/Homepage/FinancialAccountingSection.tsx +++ b/src/containers/Homepage/FinancialAccountingSection.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import ShortcutBoxesSection from './ShortcutBoxesSection'; import { financialAccounting } from '@/constants/homepageOptions'; diff --git a/src/containers/Homepage/Homepage.tsx b/src/containers/Homepage/Homepage.tsx index dc9df67a1..7b8a0eb34 100644 --- a/src/containers/Homepage/Homepage.tsx +++ b/src/containers/Homepage/Homepage.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect } from 'react'; import { DashboardInsider } from '@/components/Dashboard'; diff --git a/src/containers/Homepage/HomepageContent.tsx b/src/containers/Homepage/HomepageContent.tsx index dc0ec858e..26c9b91d7 100644 --- a/src/containers/Homepage/HomepageContent.tsx +++ b/src/containers/Homepage/HomepageContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import AccountsReceivableSection from './AccountsReceivableSection'; import AccountsPayableSection from './AccountsPayableSection'; diff --git a/src/containers/Homepage/ProductsServicesSection.tsx b/src/containers/Homepage/ProductsServicesSection.tsx index 1fcfbd4e9..bf623089b 100644 --- a/src/containers/Homepage/ProductsServicesSection.tsx +++ b/src/containers/Homepage/ProductsServicesSection.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import ShortcutBoxesSection from './ShortcutBoxesSection'; import { productsServices } from '@/constants/homepageOptions'; diff --git a/src/containers/Homepage/ShortcutBoxesSection.tsx b/src/containers/Homepage/ShortcutBoxesSection.tsx index f7c8aa464..c1b7be91c 100644 --- a/src/containers/Homepage/ShortcutBoxesSection.tsx +++ b/src/containers/Homepage/ShortcutBoxesSection.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Link } from 'react-router-dom'; import { For } from '@/components'; diff --git a/src/containers/Homepage/components.tsx b/src/containers/Homepage/components.tsx index 5b1724834..8cd40c1d7 100644 --- a/src/containers/Homepage/components.tsx +++ b/src/containers/Homepage/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { isEmpty } from 'lodash'; import { useAbilityContext } from '@/hooks'; diff --git a/src/containers/InventoryAdjustments/InventoryAdjustmentList.tsx b/src/containers/InventoryAdjustments/InventoryAdjustmentList.tsx index 90246b563..6790874d6 100644 --- a/src/containers/InventoryAdjustments/InventoryAdjustmentList.tsx +++ b/src/containers/InventoryAdjustments/InventoryAdjustmentList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import '@/style/pages/InventoryAdjustments/List.scss'; diff --git a/src/containers/InventoryAdjustments/InventoryAdjustmentTable.tsx b/src/containers/InventoryAdjustments/InventoryAdjustmentTable.tsx index 2f5c83f79..4f9b72aef 100644 --- a/src/containers/InventoryAdjustments/InventoryAdjustmentTable.tsx +++ b/src/containers/InventoryAdjustments/InventoryAdjustmentTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import intl from 'react-intl-universal'; diff --git a/src/containers/InventoryAdjustments/InventoryAdjustmentsAlerts.tsx b/src/containers/InventoryAdjustments/InventoryAdjustmentsAlerts.tsx index 6bcb64dd4..3a3dbacee 100644 --- a/src/containers/InventoryAdjustments/InventoryAdjustmentsAlerts.tsx +++ b/src/containers/InventoryAdjustments/InventoryAdjustmentsAlerts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; const InventoryAdjustmentDeleteAlert = React.lazy( diff --git a/src/containers/InventoryAdjustments/InventoryAdjustmentsProvider.tsx b/src/containers/InventoryAdjustments/InventoryAdjustmentsProvider.tsx index d77684177..5bcc15c31 100644 --- a/src/containers/InventoryAdjustments/InventoryAdjustmentsProvider.tsx +++ b/src/containers/InventoryAdjustments/InventoryAdjustmentsProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext } from 'react'; import { DashboardInsider } from '@/components/Dashboard'; import { useInventoryAdjustments } from '@/hooks/query'; diff --git a/src/containers/InventoryAdjustments/components.tsx b/src/containers/InventoryAdjustments/components.tsx index 1be9e50c9..95741e2b9 100644 --- a/src/containers/InventoryAdjustments/components.tsx +++ b/src/containers/InventoryAdjustments/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import moment from 'moment'; diff --git a/src/containers/InventoryAdjustments/withInventoryAdjustmentActions.tsx b/src/containers/InventoryAdjustments/withInventoryAdjustmentActions.tsx index 61ddebc73..c926ddaab 100644 --- a/src/containers/InventoryAdjustments/withInventoryAdjustmentActions.tsx +++ b/src/containers/InventoryAdjustments/withInventoryAdjustmentActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { setInventoryAdjustmentsTableState } from '@/store/inventoryAdjustments/inventoryAdjustment.actions'; diff --git a/src/containers/InventoryAdjustments/withInventoryAdjustments.tsx b/src/containers/InventoryAdjustments/withInventoryAdjustments.tsx index f81952141..41a80c49e 100644 --- a/src/containers/InventoryAdjustments/withInventoryAdjustments.tsx +++ b/src/containers/InventoryAdjustments/withInventoryAdjustments.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getInventroyAdjsTableStateFactory } from '@/store/inventoryAdjustments/inventoryAdjustment.selector'; diff --git a/src/containers/Items/ItemForm.schema.tsx b/src/containers/Items/ItemForm.schema.tsx index 56e4116e9..ddb74fef6 100644 --- a/src/containers/Items/ItemForm.schema.tsx +++ b/src/containers/Items/ItemForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import { defaultTo } from 'lodash'; import intl from 'react-intl-universal'; diff --git a/src/containers/Items/ItemForm.tsx b/src/containers/Items/ItemForm.tsx index b207f2624..271673a27 100644 --- a/src/containers/Items/ItemForm.tsx +++ b/src/containers/Items/ItemForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Items/ItemFormBody.tsx b/src/containers/Items/ItemFormBody.tsx index 7e4bd7f63..8d8230587 100644 --- a/src/containers/Items/ItemFormBody.tsx +++ b/src/containers/Items/ItemFormBody.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext, FastField, ErrorMessage } from 'formik'; import { diff --git a/src/containers/Items/ItemFormFloatingActions.tsx b/src/containers/Items/ItemFormFloatingActions.tsx index ce256e8f9..8c5e70e35 100644 --- a/src/containers/Items/ItemFormFloatingActions.tsx +++ b/src/containers/Items/ItemFormFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import classNames from 'classnames'; diff --git a/src/containers/Items/ItemFormFormik.tsx b/src/containers/Items/ItemFormFormik.tsx index f5f725c9f..3acf49da5 100644 --- a/src/containers/Items/ItemFormFormik.tsx +++ b/src/containers/Items/ItemFormFormik.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Formik, Form } from 'formik'; import { Intent } from '@blueprintjs/core'; diff --git a/src/containers/Items/ItemFormInventorySection.tsx b/src/containers/Items/ItemFormInventorySection.tsx index f2ab6ae73..0ac44995c 100644 --- a/src/containers/Items/ItemFormInventorySection.tsx +++ b/src/containers/Items/ItemFormInventorySection.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FastField, ErrorMessage } from 'formik'; import { FormGroup } from '@blueprintjs/core'; diff --git a/src/containers/Items/ItemFormPage.tsx b/src/containers/Items/ItemFormPage.tsx index b3fbbbad0..2e5e29396 100644 --- a/src/containers/Items/ItemFormPage.tsx +++ b/src/containers/Items/ItemFormPage.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useParams } from 'react-router-dom'; import ItemForm from './ItemForm'; diff --git a/src/containers/Items/ItemFormPrimarySection.tsx b/src/containers/Items/ItemFormPrimarySection.tsx index a82170838..e822cf79e 100644 --- a/src/containers/Items/ItemFormPrimarySection.tsx +++ b/src/containers/Items/ItemFormPrimarySection.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect, useRef } from 'react'; import { FormGroup, diff --git a/src/containers/Items/ItemFormProvider.tsx b/src/containers/Items/ItemFormProvider.tsx index 432d5f90f..235a020e0 100644 --- a/src/containers/Items/ItemFormProvider.tsx +++ b/src/containers/Items/ItemFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useState } from 'react'; import { useLocation } from 'react-router-dom'; import { diff --git a/src/containers/Items/ItemsActionsBar.tsx b/src/containers/Items/ItemsActionsBar.tsx index 77941f123..eb0e0f936 100644 --- a/src/containers/Items/ItemsActionsBar.tsx +++ b/src/containers/Items/ItemsActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; import { diff --git a/src/containers/Items/ItemsAlerts.tsx b/src/containers/Items/ItemsAlerts.tsx index 82f4d2ce2..045e09cc4 100644 --- a/src/containers/Items/ItemsAlerts.tsx +++ b/src/containers/Items/ItemsAlerts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; const ItemDeleteAlert = React.lazy( diff --git a/src/containers/Items/ItemsDataTable.tsx b/src/containers/Items/ItemsDataTable.tsx index 8809f61ce..c84525b36 100644 --- a/src/containers/Items/ItemsDataTable.tsx +++ b/src/containers/Items/ItemsDataTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; import { TABLES } from '@/constants/tables'; diff --git a/src/containers/Items/ItemsEmptyStatus.tsx b/src/containers/Items/ItemsEmptyStatus.tsx index 5b2544cb3..65779e502 100644 --- a/src/containers/Items/ItemsEmptyStatus.tsx +++ b/src/containers/Items/ItemsEmptyStatus.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, Intent } from '@blueprintjs/core'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Items/ItemsFooter.tsx b/src/containers/Items/ItemsFooter.tsx index 39fbb1be3..87bf354b2 100644 --- a/src/containers/Items/ItemsFooter.tsx +++ b/src/containers/Items/ItemsFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, Button } from '@blueprintjs/core'; import { FormattedMessage as T } from '@/components'; diff --git a/src/containers/Items/ItemsList.tsx b/src/containers/Items/ItemsList.tsx index 0b0b87816..017a5302c 100644 --- a/src/containers/Items/ItemsList.tsx +++ b/src/containers/Items/ItemsList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { compose } from '@/utils'; diff --git a/src/containers/Items/ItemsListProvider.tsx b/src/containers/Items/ItemsListProvider.tsx index c5c9eb081..320467d42 100644 --- a/src/containers/Items/ItemsListProvider.tsx +++ b/src/containers/Items/ItemsListProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext } from 'react'; import { isEmpty } from 'lodash'; import { diff --git a/src/containers/Items/ItemsUniversalSearch.tsx b/src/containers/Items/ItemsUniversalSearch.tsx index e4e9684fe..ec998b149 100644 --- a/src/containers/Items/ItemsUniversalSearch.tsx +++ b/src/containers/Items/ItemsUniversalSearch.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; import withDrawerActions from '@/containers/Drawer/withDrawerActions'; diff --git a/src/containers/Items/ItemsViewsTabs.tsx b/src/containers/Items/ItemsViewsTabs.tsx index 18bcee589..14d4739bf 100644 --- a/src/containers/Items/ItemsViewsTabs.tsx +++ b/src/containers/Items/ItemsViewsTabs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Alignment, Navbar, NavbarGroup } from '@blueprintjs/core'; import { DashboardViewsTabs } from '@/components'; diff --git a/src/containers/Items/components.tsx b/src/containers/Items/components.tsx index 924f6d347..936d7fdad 100644 --- a/src/containers/Items/components.tsx +++ b/src/containers/Items/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { isNumber } from 'lodash'; diff --git a/src/containers/Items/utils.tsx b/src/containers/Items/utils.tsx index 7b0d75dfa..c2694a3c3 100644 --- a/src/containers/Items/utils.tsx +++ b/src/containers/Items/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useMemo } from 'react'; import intl from 'react-intl-universal'; import { Intent } from '@blueprintjs/core'; diff --git a/src/containers/Items/withItem.tsx b/src/containers/Items/withItem.tsx index c5228713e..e13d93b7d 100644 --- a/src/containers/Items/withItem.tsx +++ b/src/containers/Items/withItem.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getItemById } from '@/store/items/items.reducer'; diff --git a/src/containers/Items/withItems.tsx b/src/containers/Items/withItems.tsx index dd4571876..26c720cdd 100644 --- a/src/containers/Items/withItems.tsx +++ b/src/containers/Items/withItems.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import {connect} from 'react-redux'; import { getItemsTableStateFactory, diff --git a/src/containers/Items/withItemsActions.tsx b/src/containers/Items/withItemsActions.tsx index 0e04b8977..c8acdfdf4 100644 --- a/src/containers/Items/withItemsActions.tsx +++ b/src/containers/Items/withItemsActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { setItemsTableState, diff --git a/src/containers/ItemsCategories/ItemCategoriesList.tsx b/src/containers/ItemsCategories/ItemCategoriesList.tsx index 34618c774..ae5289365 100644 --- a/src/containers/ItemsCategories/ItemCategoriesList.tsx +++ b/src/containers/ItemsCategories/ItemCategoriesList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as R from 'ramda'; diff --git a/src/containers/ItemsCategories/ItemCategoriesTable.tsx b/src/containers/ItemsCategories/ItemCategoriesTable.tsx index c9a34b2e6..3972d46e4 100644 --- a/src/containers/ItemsCategories/ItemCategoriesTable.tsx +++ b/src/containers/ItemsCategories/ItemCategoriesTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; diff --git a/src/containers/ItemsCategories/ItemsCategoriesAlerts.tsx b/src/containers/ItemsCategories/ItemsCategoriesAlerts.tsx index b761d36b9..64bdd194c 100644 --- a/src/containers/ItemsCategories/ItemsCategoriesAlerts.tsx +++ b/src/containers/ItemsCategories/ItemsCategoriesAlerts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; const ItemCategoryDeleteAlert = React.lazy( diff --git a/src/containers/ItemsCategories/ItemsCategoriesProvider.tsx b/src/containers/ItemsCategories/ItemsCategoriesProvider.tsx index 3abc1ca88..ad3e65063 100644 --- a/src/containers/ItemsCategories/ItemsCategoriesProvider.tsx +++ b/src/containers/ItemsCategories/ItemsCategoriesProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext } from 'react'; import { DashboardInsider } from '@/components'; import { useItemsCategories, useResourceMeta } from '@/hooks/query'; diff --git a/src/containers/ItemsCategories/ItemsCategoryActionsBar.tsx b/src/containers/ItemsCategories/ItemsCategoryActionsBar.tsx index 7b39e60f0..8faf951ac 100644 --- a/src/containers/ItemsCategories/ItemsCategoryActionsBar.tsx +++ b/src/containers/ItemsCategories/ItemsCategoryActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { NavbarGroup, diff --git a/src/containers/ItemsCategories/components.tsx b/src/containers/ItemsCategories/components.tsx index cfa9829d0..2653b67a3 100644 --- a/src/containers/ItemsCategories/components.tsx +++ b/src/containers/ItemsCategories/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { diff --git a/src/containers/ItemsCategories/withItemCategories.tsx b/src/containers/ItemsCategories/withItemCategories.tsx index 72b3a6bab..b2dd6a9f6 100644 --- a/src/containers/ItemsCategories/withItemCategories.tsx +++ b/src/containers/ItemsCategories/withItemCategories.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getItemsCategoriesTableStateFactory, diff --git a/src/containers/ItemsCategories/withItemCategoriesActions.tsx b/src/containers/ItemsCategories/withItemCategoriesActions.tsx index 40383f9a9..751e5bf0f 100644 --- a/src/containers/ItemsCategories/withItemCategoriesActions.tsx +++ b/src/containers/ItemsCategories/withItemCategoriesActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { setItemsCategoriesTableState } from '@/store/itemCategories/itemsCategory.actions'; diff --git a/src/containers/ItemsCategories/withItemCategoryDetail.tsx b/src/containers/ItemsCategories/withItemCategoryDetail.tsx index f1f8b0b00..36ccc7de7 100644 --- a/src/containers/ItemsCategories/withItemCategoryDetail.tsx +++ b/src/containers/ItemsCategories/withItemCategoryDetail.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getItemCategoryByIdFactory } from '@/store/itemCategories/ItemsCategories.selectors'; diff --git a/src/containers/JournalEntriesTable/JournalEntriesTable.tsx b/src/containers/JournalEntriesTable/JournalEntriesTable.tsx index ce5842708..436ccd3c4 100644 --- a/src/containers/JournalEntriesTable/JournalEntriesTable.tsx +++ b/src/containers/JournalEntriesTable/JournalEntriesTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import intl from 'react-intl-universal'; diff --git a/src/containers/JournalEntriesTable/utils.tsx b/src/containers/JournalEntriesTable/utils.tsx index 3ad3418e9..5d2f9f890 100644 --- a/src/containers/JournalEntriesTable/utils.tsx +++ b/src/containers/JournalEntriesTable/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import moment from 'moment'; diff --git a/src/containers/JournalNumber/ReferenceNumberForm.tsx b/src/containers/JournalNumber/ReferenceNumberForm.tsx index a5f4b8d07..635be6b46 100644 --- a/src/containers/JournalNumber/ReferenceNumberForm.tsx +++ b/src/containers/JournalNumber/ReferenceNumberForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import * as Yup from 'yup'; import { Formik, Form } from 'formik'; diff --git a/src/containers/JournalNumber/ReferenceNumberFormContent.tsx b/src/containers/JournalNumber/ReferenceNumberFormContent.tsx index 5249ceb3e..ea727000e 100644 --- a/src/containers/JournalNumber/ReferenceNumberFormContent.tsx +++ b/src/containers/JournalNumber/ReferenceNumberFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FastField, useFormikContext } from 'formik'; import { FormattedMessage as T } from '@/components'; diff --git a/src/containers/JournalNumber/utils.tsx b/src/containers/JournalNumber/utils.tsx index f1f59290b..c89d198fd 100644 --- a/src/containers/JournalNumber/utils.tsx +++ b/src/containers/JournalNumber/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { transformToForm, optionsMapToArray, diff --git a/src/containers/KeyboardShortcuts/ShortcutsTable.tsx b/src/containers/KeyboardShortcuts/ShortcutsTable.tsx index bd3be9103..e39c2957b 100644 --- a/src/containers/KeyboardShortcuts/ShortcutsTable.tsx +++ b/src/containers/KeyboardShortcuts/ShortcutsTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import { DataTable } from '@/components'; import intl from 'react-intl-universal'; diff --git a/src/containers/Media/withMediaActions.tsx b/src/containers/Media/withMediaActions.tsx index 37effec3e..b89847038 100644 --- a/src/containers/Media/withMediaActions.tsx +++ b/src/containers/Media/withMediaActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import {connect} from 'react-redux'; import { submitMedia, diff --git a/src/containers/NotifyViaSMS/NotifyViaSMSForm.schema.tsx b/src/containers/NotifyViaSMS/NotifyViaSMSForm.schema.tsx index a3f5cea9e..4eae9d27a 100644 --- a/src/containers/NotifyViaSMS/NotifyViaSMSForm.schema.tsx +++ b/src/containers/NotifyViaSMS/NotifyViaSMSForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; import { DATATYPES_LENGTH } from '@/constants/dataTypes'; diff --git a/src/containers/NotifyViaSMS/NotifyViaSMSForm.tsx b/src/containers/NotifyViaSMS/NotifyViaSMSForm.tsx index b2843a406..7e32a46eb 100644 --- a/src/containers/NotifyViaSMS/NotifyViaSMSForm.tsx +++ b/src/containers/NotifyViaSMS/NotifyViaSMSForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { castArray, includes } from 'lodash'; diff --git a/src/containers/NotifyViaSMS/NotifyViaSMSFormFields.tsx b/src/containers/NotifyViaSMS/NotifyViaSMSFormFields.tsx index 711d576d5..613931a3d 100644 --- a/src/containers/NotifyViaSMS/NotifyViaSMSFormFields.tsx +++ b/src/containers/NotifyViaSMS/NotifyViaSMSFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FastField, ErrorMessage } from 'formik'; import { FormGroup, InputGroup } from '@blueprintjs/core'; diff --git a/src/containers/NotifyViaSMS/NotifyViaSMSFormFloatingActions.tsx b/src/containers/NotifyViaSMS/NotifyViaSMSFormFloatingActions.tsx index 1c723f894..47d54b06c 100644 --- a/src/containers/NotifyViaSMS/NotifyViaSMSFormFloatingActions.tsx +++ b/src/containers/NotifyViaSMS/NotifyViaSMSFormFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; import { Intent, Button } from '@blueprintjs/core'; diff --git a/src/containers/NotifyViaSMS/utils.tsx b/src/containers/NotifyViaSMS/utils.tsx index 2d6b78593..df5a93e93 100644 --- a/src/containers/NotifyViaSMS/utils.tsx +++ b/src/containers/NotifyViaSMS/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; export const transformErrors = (errors, { setErrors, setCalloutCode }) => { diff --git a/src/containers/Organization/withCurrentOrganization.tsx b/src/containers/Organization/withCurrentOrganization.tsx index 817ccf3a1..9322b48d5 100644 --- a/src/containers/Organization/withCurrentOrganization.tsx +++ b/src/containers/Organization/withCurrentOrganization.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getCurrentOrganizationFactory } from '@/store/authentication/authentication.selectors'; diff --git a/src/containers/Organization/withOrganization.tsx b/src/containers/Organization/withOrganization.tsx index 0034c3a88..a432410aa 100644 --- a/src/containers/Organization/withOrganization.tsx +++ b/src/containers/Organization/withOrganization.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getOrganizationByIdFactory, diff --git a/src/containers/Organization/withOrganizationActions.tsx b/src/containers/Organization/withOrganizationActions.tsx index 1a8069b61..ecf30297b 100644 --- a/src/containers/Organization/withOrganizationActions.tsx +++ b/src/containers/Organization/withOrganizationActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { setOrganizationSetupCompleted, diff --git a/src/containers/Preferences/Accountant/Accountant.schema.tsx b/src/containers/Preferences/Accountant/Accountant.schema.tsx index 3b0b55373..d2aee3fbb 100644 --- a/src/containers/Preferences/Accountant/Accountant.schema.tsx +++ b/src/containers/Preferences/Accountant/Accountant.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; const Schema = Yup.object().shape({ diff --git a/src/containers/Preferences/Accountant/Accountant.tsx b/src/containers/Preferences/Accountant/Accountant.tsx index 957094e17..7df91e377 100644 --- a/src/containers/Preferences/Accountant/Accountant.tsx +++ b/src/containers/Preferences/Accountant/Accountant.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import AccountantFormPage from './AccountantFormPage'; import { AccountantFormProvider } from './AccountantFormProvider'; diff --git a/src/containers/Preferences/Accountant/AccountantForm.tsx b/src/containers/Preferences/Accountant/AccountantForm.tsx index 87de34e3d..112c82756 100644 --- a/src/containers/Preferences/Accountant/AccountantForm.tsx +++ b/src/containers/Preferences/Accountant/AccountantForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Form, FastField, useFormikContext } from 'formik'; diff --git a/src/containers/Preferences/Accountant/AccountantFormPage.tsx b/src/containers/Preferences/Accountant/AccountantFormPage.tsx index 338ee1169..c18692698 100644 --- a/src/containers/Preferences/Accountant/AccountantFormPage.tsx +++ b/src/containers/Preferences/Accountant/AccountantFormPage.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect } from 'react'; import intl from 'react-intl-universal'; import { Formik } from 'formik'; diff --git a/src/containers/Preferences/Accountant/AccountantFormProvider.tsx b/src/containers/Preferences/Accountant/AccountantFormProvider.tsx index 061173f4f..56d51a13e 100644 --- a/src/containers/Preferences/Accountant/AccountantFormProvider.tsx +++ b/src/containers/Preferences/Accountant/AccountantFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import styled from 'styled-components'; diff --git a/src/containers/Preferences/Accountant/utils.tsx b/src/containers/Preferences/Accountant/utils.tsx index 0579127f5..c5fe63218 100644 --- a/src/containers/Preferences/Accountant/utils.tsx +++ b/src/containers/Preferences/Accountant/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export const transformToOptions = (option) => { return [ { diff --git a/src/containers/Preferences/Branches/Branches.tsx b/src/containers/Preferences/Branches/Branches.tsx index 7ccc4af34..99543405f 100644 --- a/src/containers/Preferences/Branches/Branches.tsx +++ b/src/containers/Preferences/Branches/Branches.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; diff --git a/src/containers/Preferences/Branches/BranchesActions.tsx b/src/containers/Preferences/Branches/BranchesActions.tsx index 0b603930f..e9bcd9b77 100644 --- a/src/containers/Preferences/Branches/BranchesActions.tsx +++ b/src/containers/Preferences/Branches/BranchesActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, Intent } from '@blueprintjs/core'; diff --git a/src/containers/Preferences/Branches/BranchesAlerts.tsx b/src/containers/Preferences/Branches/BranchesAlerts.tsx index d2fd1a50a..051ffc83c 100644 --- a/src/containers/Preferences/Branches/BranchesAlerts.tsx +++ b/src/containers/Preferences/Branches/BranchesAlerts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; const BranchDeleteAlert = React.lazy( diff --git a/src/containers/Preferences/Branches/BranchesDataTable.tsx b/src/containers/Preferences/Branches/BranchesDataTable.tsx index 2fa36c601..982109f20 100644 --- a/src/containers/Preferences/Branches/BranchesDataTable.tsx +++ b/src/containers/Preferences/Branches/BranchesDataTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Preferences/Branches/BranchesEmptyStatus.tsx b/src/containers/Preferences/Branches/BranchesEmptyStatus.tsx index 858857968..c57570f86 100644 --- a/src/containers/Preferences/Branches/BranchesEmptyStatus.tsx +++ b/src/containers/Preferences/Branches/BranchesEmptyStatus.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, Intent } from '@blueprintjs/core'; import { FormattedMessage as T, EmptyStatus } from '@/components'; diff --git a/src/containers/Preferences/Branches/BranchesProvider.tsx b/src/containers/Preferences/Branches/BranchesProvider.tsx index 7a3e04fba..437ff3697 100644 --- a/src/containers/Preferences/Branches/BranchesProvider.tsx +++ b/src/containers/Preferences/Branches/BranchesProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import { CLASSES } from '@/constants/classes'; diff --git a/src/containers/Preferences/Branches/components.tsx b/src/containers/Preferences/Branches/components.tsx index b5379c304..5c4c6ca92 100644 --- a/src/containers/Preferences/Branches/components.tsx +++ b/src/containers/Preferences/Branches/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Menu, MenuDivider, MenuItem } from '@blueprintjs/core'; diff --git a/src/containers/Preferences/Branches/index.tsx b/src/containers/Preferences/Branches/index.tsx index 9bd083d91..f2f9a2e85 100644 --- a/src/containers/Preferences/Branches/index.tsx +++ b/src/containers/Preferences/Branches/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { BranchesProvider } from './BranchesProvider'; diff --git a/src/containers/Preferences/Branches/utils.tsx b/src/containers/Preferences/Branches/utils.tsx index c1e45efe1..7d4bc74cf 100644 --- a/src/containers/Preferences/Branches/utils.tsx +++ b/src/containers/Preferences/Branches/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; import { Intent } from '@blueprintjs/core'; import { AppToaster } from '@/components'; diff --git a/src/containers/Preferences/Currencies/Currencies.tsx b/src/containers/Preferences/Currencies/Currencies.tsx index 9888c6944..0cb88c967 100644 --- a/src/containers/Preferences/Currencies/Currencies.tsx +++ b/src/containers/Preferences/Currencies/Currencies.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import styled from 'styled-components'; diff --git a/src/containers/Preferences/Currencies/CurrenciesActions.tsx b/src/containers/Preferences/Currencies/CurrenciesActions.tsx index e4fac1c51..4340f504d 100644 --- a/src/containers/Preferences/Currencies/CurrenciesActions.tsx +++ b/src/containers/Preferences/Currencies/CurrenciesActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import { Button, Intent } from '@blueprintjs/core'; import { compose } from '@/utils'; diff --git a/src/containers/Preferences/Currencies/CurrenciesAlerts.tsx b/src/containers/Preferences/Currencies/CurrenciesAlerts.tsx index 495ff5c5a..9394c7aff 100644 --- a/src/containers/Preferences/Currencies/CurrenciesAlerts.tsx +++ b/src/containers/Preferences/Currencies/CurrenciesAlerts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; const CurrencyDeleteAlert = React.lazy( diff --git a/src/containers/Preferences/Currencies/CurrenciesDataTable.tsx b/src/containers/Preferences/Currencies/CurrenciesDataTable.tsx index 6c21700f6..e57a52b6b 100644 --- a/src/containers/Preferences/Currencies/CurrenciesDataTable.tsx +++ b/src/containers/Preferences/Currencies/CurrenciesDataTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import { compose } from '@/utils'; diff --git a/src/containers/Preferences/Currencies/CurrenciesList.tsx b/src/containers/Preferences/Currencies/CurrenciesList.tsx index 7f6e58738..600a65094 100644 --- a/src/containers/Preferences/Currencies/CurrenciesList.tsx +++ b/src/containers/Preferences/Currencies/CurrenciesList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect } from 'react'; import intl from 'react-intl-universal'; diff --git a/src/containers/Preferences/Currencies/CurrenciesProvider.tsx b/src/containers/Preferences/Currencies/CurrenciesProvider.tsx index a8bdc6240..0ca9db228 100644 --- a/src/containers/Preferences/Currencies/CurrenciesProvider.tsx +++ b/src/containers/Preferences/Currencies/CurrenciesProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useContext } from 'react'; import { useCurrencies } from '@/hooks/query'; diff --git a/src/containers/Preferences/Currencies/components.tsx b/src/containers/Preferences/Currencies/components.tsx index ac61d21d8..50602c13c 100644 --- a/src/containers/Preferences/Currencies/components.tsx +++ b/src/containers/Preferences/Currencies/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import intl from 'react-intl-universal'; import { diff --git a/src/containers/Preferences/DefaultRoute.tsx b/src/containers/Preferences/DefaultRoute.tsx index 2b9b51f73..35c4e6e97 100644 --- a/src/containers/Preferences/DefaultRoute.tsx +++ b/src/containers/Preferences/DefaultRoute.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Redirect } from 'react-router-dom'; diff --git a/src/containers/Preferences/General/General.schema.tsx b/src/containers/Preferences/General/General.schema.tsx index f6647c471..249a9c6e9 100644 --- a/src/containers/Preferences/General/General.schema.tsx +++ b/src/containers/Preferences/General/General.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; diff --git a/src/containers/Preferences/General/General.tsx b/src/containers/Preferences/General/General.tsx index 666fc21bf..fccb3c84b 100644 --- a/src/containers/Preferences/General/General.tsx +++ b/src/containers/Preferences/General/General.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import GeneralFormPage from './GeneralFormPage'; diff --git a/src/containers/Preferences/General/GeneralForm.tsx b/src/containers/Preferences/General/GeneralForm.tsx index b59c53a47..faf729473 100644 --- a/src/containers/Preferences/General/GeneralForm.tsx +++ b/src/containers/Preferences/General/GeneralForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import classNames from 'classnames'; diff --git a/src/containers/Preferences/General/GeneralFormPage.tsx b/src/containers/Preferences/General/GeneralFormPage.tsx index b4c6fa8c5..ab3825f5b 100644 --- a/src/containers/Preferences/General/GeneralFormPage.tsx +++ b/src/containers/Preferences/General/GeneralFormPage.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect } from 'react'; import intl from 'react-intl-universal'; import { Formik } from 'formik'; diff --git a/src/containers/Preferences/General/GeneralFormProvider.tsx b/src/containers/Preferences/General/GeneralFormProvider.tsx index 73da2ecac..a5835e42c 100644 --- a/src/containers/Preferences/General/GeneralFormProvider.tsx +++ b/src/containers/Preferences/General/GeneralFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext } from 'react'; import classNames from 'classnames'; import styled from 'styled-components'; diff --git a/src/containers/Preferences/General/utils.tsx b/src/containers/Preferences/General/utils.tsx index 7706302e5..5ca4f5c1a 100644 --- a/src/containers/Preferences/General/utils.tsx +++ b/src/containers/Preferences/General/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { defaultFastFieldShouldUpdate } from '@/utils'; export const shouldBaseCurrencyUpdate = (newProps, oldProps) => { diff --git a/src/containers/Preferences/Item/ItemPreferences.schema.tsx b/src/containers/Preferences/Item/ItemPreferences.schema.tsx index 456a5ac99..4035b30be 100644 --- a/src/containers/Preferences/Item/ItemPreferences.schema.tsx +++ b/src/containers/Preferences/Item/ItemPreferences.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; const Schema = Yup.object().shape({ diff --git a/src/containers/Preferences/Item/ItemPreferencesForm.tsx b/src/containers/Preferences/Item/ItemPreferencesForm.tsx index d767babc3..809ccf567 100644 --- a/src/containers/Preferences/Item/ItemPreferencesForm.tsx +++ b/src/containers/Preferences/Item/ItemPreferencesForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Form, FastField, useFormikContext } from 'formik'; import { FormGroup, Button, Intent } from '@blueprintjs/core'; diff --git a/src/containers/Preferences/Item/ItemPreferencesFormPage.tsx b/src/containers/Preferences/Item/ItemPreferencesFormPage.tsx index 00051cc5b..7bb691f1d 100644 --- a/src/containers/Preferences/Item/ItemPreferencesFormPage.tsx +++ b/src/containers/Preferences/Item/ItemPreferencesFormPage.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect } from 'react'; import intl from 'react-intl-universal'; import { Formik } from 'formik'; diff --git a/src/containers/Preferences/Item/ItemPreferencesFormProvider.tsx b/src/containers/Preferences/Item/ItemPreferencesFormProvider.tsx index 7f80e9c78..692d0d285 100644 --- a/src/containers/Preferences/Item/ItemPreferencesFormProvider.tsx +++ b/src/containers/Preferences/Item/ItemPreferencesFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useContext, createContext } from 'react'; import classNames from 'classnames'; import styled from 'styled-components'; diff --git a/src/containers/Preferences/Item/index.tsx b/src/containers/Preferences/Item/index.tsx index 097610d4f..b940e566a 100644 --- a/src/containers/Preferences/Item/index.tsx +++ b/src/containers/Preferences/Item/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import ItemPreferencesFormPage from './ItemPreferencesFormPage'; import { ItemPreferencesFormProvider } from './ItemPreferencesFormProvider'; diff --git a/src/containers/Preferences/PreferencesPageLoader.tsx b/src/containers/Preferences/PreferencesPageLoader.tsx index 7694058e2..4413f5ca5 100644 --- a/src/containers/Preferences/PreferencesPageLoader.tsx +++ b/src/containers/Preferences/PreferencesPageLoader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import ContentLoader from 'react-content-loader'; diff --git a/src/containers/Preferences/SMSIntegration/SMSIntegrationProvider.tsx b/src/containers/Preferences/SMSIntegration/SMSIntegrationProvider.tsx index 03d1f06c6..d6c98f524 100644 --- a/src/containers/Preferences/SMSIntegration/SMSIntegrationProvider.tsx +++ b/src/containers/Preferences/SMSIntegration/SMSIntegrationProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import { CLASSES } from '@/constants/classes'; diff --git a/src/containers/Preferences/SMSIntegration/SMSIntegrationTabs.tsx b/src/containers/Preferences/SMSIntegration/SMSIntegrationTabs.tsx index d8fe78752..1b8e4400f 100644 --- a/src/containers/Preferences/SMSIntegration/SMSIntegrationTabs.tsx +++ b/src/containers/Preferences/SMSIntegration/SMSIntegrationTabs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Preferences/SMSIntegration/SMSMessagesDataTable.tsx b/src/containers/Preferences/SMSIntegration/SMSMessagesDataTable.tsx index af58db8cb..f2926f19e 100644 --- a/src/containers/Preferences/SMSIntegration/SMSMessagesDataTable.tsx +++ b/src/containers/Preferences/SMSIntegration/SMSMessagesDataTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Preferences/SMSIntegration/components.tsx b/src/containers/Preferences/SMSIntegration/components.tsx index b4011d56f..1f601eba9 100644 --- a/src/containers/Preferences/SMSIntegration/components.tsx +++ b/src/containers/Preferences/SMSIntegration/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Preferences/SMSIntegration/index.tsx b/src/containers/Preferences/SMSIntegration/index.tsx index bd3d7d5cc..7dc76a276 100644 --- a/src/containers/Preferences/SMSIntegration/index.tsx +++ b/src/containers/Preferences/SMSIntegration/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { SMSIntegrationProvider } from './SMSIntegrationProvider'; diff --git a/src/containers/Preferences/Users/Roles/RolesAlerts.tsx b/src/containers/Preferences/Users/Roles/RolesAlerts.tsx index 64eb61b9e..5dac00412 100644 --- a/src/containers/Preferences/Users/Roles/RolesAlerts.tsx +++ b/src/containers/Preferences/Users/Roles/RolesAlerts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; const RoleDeleteAlert = React.lazy( diff --git a/src/containers/Preferences/Users/Roles/RolesForm/RoleFormFloatingActions.tsx b/src/containers/Preferences/Users/Roles/RolesForm/RoleFormFloatingActions.tsx index 0aa75fc96..06e7214f9 100644 --- a/src/containers/Preferences/Users/Roles/RolesForm/RoleFormFloatingActions.tsx +++ b/src/containers/Preferences/Users/Roles/RolesForm/RoleFormFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Preferences/Users/Roles/RolesForm/RoleFormHeader.tsx b/src/containers/Preferences/Users/Roles/RolesForm/RoleFormHeader.tsx index 562ab4b7d..8fe40637d 100644 --- a/src/containers/Preferences/Users/Roles/RolesForm/RoleFormHeader.tsx +++ b/src/containers/Preferences/Users/Roles/RolesForm/RoleFormHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { ErrorMessage, FastField } from 'formik'; import { FormGroup, InputGroup, TextArea } from '@blueprintjs/core'; diff --git a/src/containers/Preferences/Users/Roles/RolesForm/RoleFormObserver.tsx b/src/containers/Preferences/Users/Roles/RolesForm/RoleFormObserver.tsx index c5a13960c..44f750d7c 100644 --- a/src/containers/Preferences/Users/Roles/RolesForm/RoleFormObserver.tsx +++ b/src/containers/Preferences/Users/Roles/RolesForm/RoleFormObserver.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; import { FormikObserver } from '@/components'; diff --git a/src/containers/Preferences/Users/Roles/RolesForm/RolesForm.schema.tsx b/src/containers/Preferences/Users/Roles/RolesForm/RolesForm.schema.tsx index 99569ce0a..bc0e913fd 100644 --- a/src/containers/Preferences/Users/Roles/RolesForm/RolesForm.schema.tsx +++ b/src/containers/Preferences/Users/Roles/RolesForm/RolesForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; import { DATATYPES_LENGTH } from '@/constants/dataTypes'; diff --git a/src/containers/Preferences/Users/Roles/RolesForm/RolesForm.tsx b/src/containers/Preferences/Users/Roles/RolesForm/RolesForm.tsx index 62b7c711a..c6565b961 100644 --- a/src/containers/Preferences/Users/Roles/RolesForm/RolesForm.tsx +++ b/src/containers/Preferences/Users/Roles/RolesForm/RolesForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Preferences/Users/Roles/RolesForm/RolesFormContent.tsx b/src/containers/Preferences/Users/Roles/RolesForm/RolesFormContent.tsx index e736409d3..7e9c96286 100644 --- a/src/containers/Preferences/Users/Roles/RolesForm/RolesFormContent.tsx +++ b/src/containers/Preferences/Users/Roles/RolesForm/RolesFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Form } from 'formik'; diff --git a/src/containers/Preferences/Users/Roles/RolesForm/RolesFormPage.tsx b/src/containers/Preferences/Users/Roles/RolesForm/RolesFormPage.tsx index 0df47a223..a3acc20f5 100644 --- a/src/containers/Preferences/Users/Roles/RolesForm/RolesFormPage.tsx +++ b/src/containers/Preferences/Users/Roles/RolesForm/RolesFormPage.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useParams } from 'react-router-dom'; import { RolesFormProvider } from './RolesFormProvider'; diff --git a/src/containers/Preferences/Users/Roles/RolesForm/RolesFormProvider.tsx b/src/containers/Preferences/Users/Roles/RolesForm/RolesFormProvider.tsx index 7892f58e8..cfc312c2c 100644 --- a/src/containers/Preferences/Users/Roles/RolesForm/RolesFormProvider.tsx +++ b/src/containers/Preferences/Users/Roles/RolesForm/RolesFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import { CLASSES } from '@/constants/classes'; diff --git a/src/containers/Preferences/Users/Roles/RolesForm/components.tsx b/src/containers/Preferences/Users/Roles/RolesForm/components.tsx index 00ccf1460..ec00d0b5b 100644 --- a/src/containers/Preferences/Users/Roles/RolesForm/components.tsx +++ b/src/containers/Preferences/Users/Roles/RolesForm/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { Field } from 'formik'; diff --git a/src/containers/Preferences/Users/Roles/RolesForm/utils.tsx b/src/containers/Preferences/Users/Roles/RolesForm/utils.tsx index 58eec7529..0bedf991a 100644 --- a/src/containers/Preferences/Users/Roles/RolesForm/utils.tsx +++ b/src/containers/Preferences/Users/Roles/RolesForm/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { chain, isEmpty, castArray, memoize } from 'lodash'; import * as R from 'ramda'; import { DepGraph } from 'dependency-graph'; diff --git a/src/containers/Preferences/Users/Roles/RolesLanding/RolesDataTable.tsx b/src/containers/Preferences/Users/Roles/RolesLanding/RolesDataTable.tsx index 9ba58dfe1..c31ffb71c 100644 --- a/src/containers/Preferences/Users/Roles/RolesLanding/RolesDataTable.tsx +++ b/src/containers/Preferences/Users/Roles/RolesLanding/RolesDataTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Preferences/Users/Roles/RolesLanding/RolesList.tsx b/src/containers/Preferences/Users/Roles/RolesLanding/RolesList.tsx index 095b905d2..b0b013310 100644 --- a/src/containers/Preferences/Users/Roles/RolesLanding/RolesList.tsx +++ b/src/containers/Preferences/Users/Roles/RolesLanding/RolesList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { RolesListProvider } from './RolesListProvider'; diff --git a/src/containers/Preferences/Users/Roles/RolesLanding/RolesListProvider.tsx b/src/containers/Preferences/Users/Roles/RolesLanding/RolesListProvider.tsx index d28772149..36f528ca2 100644 --- a/src/containers/Preferences/Users/Roles/RolesLanding/RolesListProvider.tsx +++ b/src/containers/Preferences/Users/Roles/RolesLanding/RolesListProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import { CLASSES } from '@/constants/classes'; diff --git a/src/containers/Preferences/Users/Roles/RolesLanding/components.tsx b/src/containers/Preferences/Users/Roles/RolesLanding/components.tsx index 75cb69338..dcf17b1fd 100644 --- a/src/containers/Preferences/Users/Roles/RolesLanding/components.tsx +++ b/src/containers/Preferences/Users/Roles/RolesLanding/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; diff --git a/src/containers/Preferences/Users/Roles/utils.tsx b/src/containers/Preferences/Users/Roles/utils.tsx index 2bf8e026a..6bff66393 100644 --- a/src/containers/Preferences/Users/Roles/utils.tsx +++ b/src/containers/Preferences/Users/Roles/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; import { Intent } from '@blueprintjs/core'; import { AppToaster } from '@/components'; diff --git a/src/containers/Preferences/Users/Users.tsx b/src/containers/Preferences/Users/Users.tsx index f9b81d90d..a4c6901b6 100644 --- a/src/containers/Preferences/Users/Users.tsx +++ b/src/containers/Preferences/Users/Users.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import classNames from 'classnames'; diff --git a/src/containers/Preferences/Users/UsersActions.tsx b/src/containers/Preferences/Users/UsersActions.tsx index 4f5a62bd2..97d957693 100644 --- a/src/containers/Preferences/Users/UsersActions.tsx +++ b/src/containers/Preferences/Users/UsersActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Preferences/Users/UsersAlerts.tsx b/src/containers/Preferences/Users/UsersAlerts.tsx index 01ac25f8e..70297ea0b 100644 --- a/src/containers/Preferences/Users/UsersAlerts.tsx +++ b/src/containers/Preferences/Users/UsersAlerts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; const UserDeleteAlert = React.lazy( diff --git a/src/containers/Preferences/Users/UsersDataTable.tsx b/src/containers/Preferences/Users/UsersDataTable.tsx index d684df5c7..d9482d774 100644 --- a/src/containers/Preferences/Users/UsersDataTable.tsx +++ b/src/containers/Preferences/Users/UsersDataTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import { compose } from '@/utils'; diff --git a/src/containers/Preferences/Users/UsersList.tsx b/src/containers/Preferences/Users/UsersList.tsx index bfd050a6e..fdd9282d0 100644 --- a/src/containers/Preferences/Users/UsersList.tsx +++ b/src/containers/Preferences/Users/UsersList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect } from 'react'; import intl from 'react-intl-universal'; diff --git a/src/containers/Preferences/Users/UsersProvider.tsx b/src/containers/Preferences/Users/UsersProvider.tsx index 947f1bb26..90888f27c 100644 --- a/src/containers/Preferences/Users/UsersProvider.tsx +++ b/src/containers/Preferences/Users/UsersProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext } from 'react'; import { useUsers } from '@/hooks/query'; diff --git a/src/containers/Preferences/Users/components.tsx b/src/containers/Preferences/Users/components.tsx index 011747c1f..a278d632b 100644 --- a/src/containers/Preferences/Users/components.tsx +++ b/src/containers/Preferences/Users/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { FormattedMessage as T, Icon, If } from '@/components'; diff --git a/src/containers/Preferences/Users/withUserPreferences.tsx b/src/containers/Preferences/Users/withUserPreferences.tsx index d82080cb5..d6454abd3 100644 --- a/src/containers/Preferences/Users/withUserPreferences.tsx +++ b/src/containers/Preferences/Users/withUserPreferences.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import t from '@/store/types'; diff --git a/src/containers/Preferences/Warehouses/Warehouses.tsx b/src/containers/Preferences/Warehouses/Warehouses.tsx index c37d2c508..a631a4466 100644 --- a/src/containers/Preferences/Warehouses/Warehouses.tsx +++ b/src/containers/Preferences/Warehouses/Warehouses.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; diff --git a/src/containers/Preferences/Warehouses/WarehousesActions.tsx b/src/containers/Preferences/Warehouses/WarehousesActions.tsx index a90ca19b9..02916147e 100644 --- a/src/containers/Preferences/Warehouses/WarehousesActions.tsx +++ b/src/containers/Preferences/Warehouses/WarehousesActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, Intent } from '@blueprintjs/core'; diff --git a/src/containers/Preferences/Warehouses/WarehousesAlerts.tsx b/src/containers/Preferences/Warehouses/WarehousesAlerts.tsx index fbff20aea..d00476469 100644 --- a/src/containers/Preferences/Warehouses/WarehousesAlerts.tsx +++ b/src/containers/Preferences/Warehouses/WarehousesAlerts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; const WarehouseDeleteAlert = React.lazy( diff --git a/src/containers/Preferences/Warehouses/WarehousesEmptyStatus.tsx b/src/containers/Preferences/Warehouses/WarehousesEmptyStatus.tsx index 47e75edfa..7cb8e6ae8 100644 --- a/src/containers/Preferences/Warehouses/WarehousesEmptyStatus.tsx +++ b/src/containers/Preferences/Warehouses/WarehousesEmptyStatus.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, Intent } from '@blueprintjs/core'; import { FormattedMessage as T, EmptyStatus } from '@/components'; diff --git a/src/containers/Preferences/Warehouses/WarehousesGrid.tsx b/src/containers/Preferences/Warehouses/WarehousesGrid.tsx index 523424a57..55dabaa8c 100644 --- a/src/containers/Preferences/Warehouses/WarehousesGrid.tsx +++ b/src/containers/Preferences/Warehouses/WarehousesGrid.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import WarehousesEmptyStatus from './WarehousesEmptyStatus'; import { useWarehousesContext } from './WarehousesProvider'; diff --git a/src/containers/Preferences/Warehouses/WarehousesGridItems.tsx b/src/containers/Preferences/Warehouses/WarehousesGridItems.tsx index 24de17762..06bf2b5c8 100644 --- a/src/containers/Preferences/Warehouses/WarehousesGridItems.tsx +++ b/src/containers/Preferences/Warehouses/WarehousesGridItems.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent } from '@blueprintjs/core'; diff --git a/src/containers/Preferences/Warehouses/WarehousesProvider.tsx b/src/containers/Preferences/Warehouses/WarehousesProvider.tsx index c586b764c..033d3134c 100644 --- a/src/containers/Preferences/Warehouses/WarehousesProvider.tsx +++ b/src/containers/Preferences/Warehouses/WarehousesProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import classNames from 'classnames'; diff --git a/src/containers/Preferences/Warehouses/components.tsx b/src/containers/Preferences/Warehouses/components.tsx index 5c505c5da..54be5740c 100644 --- a/src/containers/Preferences/Warehouses/components.tsx +++ b/src/containers/Preferences/Warehouses/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Preferences/Warehouses/index.tsx b/src/containers/Preferences/Warehouses/index.tsx index 5a7270e10..b70305e0e 100644 --- a/src/containers/Preferences/Warehouses/index.tsx +++ b/src/containers/Preferences/Warehouses/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { WarehousesProvider } from './WarehousesProvider'; import Warehouses from './Warehouses'; diff --git a/src/containers/Preferences/Warehouses/utils.tsx b/src/containers/Preferences/Warehouses/utils.tsx index cd371f03b..732a253c6 100644 --- a/src/containers/Preferences/Warehouses/utils.tsx +++ b/src/containers/Preferences/Warehouses/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; import { Intent } from '@blueprintjs/core'; import { AppToaster } from '@/components'; diff --git a/src/containers/Projects/components/ChangeTypesSelect.tsx b/src/containers/Projects/components/ChangeTypesSelect.tsx index 2587f59d6..79335bd8e 100644 --- a/src/containers/Projects/components/ChangeTypesSelect.tsx +++ b/src/containers/Projects/components/ChangeTypesSelect.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { MenuItem, Button } from '@blueprintjs/core'; import { FSelect } from '@/components'; diff --git a/src/containers/Projects/components/ExpenseSelect.tsx b/src/containers/Projects/components/ExpenseSelect.tsx index 394508438..2fa1695e8 100644 --- a/src/containers/Projects/components/ExpenseSelect.tsx +++ b/src/containers/Projects/components/ExpenseSelect.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { MenuItem, Button } from '@blueprintjs/core'; diff --git a/src/containers/Projects/components/FInputGroupComponent.tsx b/src/containers/Projects/components/FInputGroupComponent.tsx index 1e0eef20d..af143d264 100644 --- a/src/containers/Projects/components/FInputGroupComponent.tsx +++ b/src/containers/Projects/components/FInputGroupComponent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FInputGroup } from '@/components'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Projects/components/ProjectMultiSelect.tsx b/src/containers/Projects/components/ProjectMultiSelect.tsx index 6ce0de269..62a95bab4 100644 --- a/src/containers/Projects/components/ProjectMultiSelect.tsx +++ b/src/containers/Projects/components/ProjectMultiSelect.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { MenuItem } from '@blueprintjs/core'; diff --git a/src/containers/Projects/components/ProjectSuggestField.tsx b/src/containers/Projects/components/ProjectSuggestField.tsx index ede0e53a0..56cd61df0 100644 --- a/src/containers/Projects/components/ProjectSuggestField.tsx +++ b/src/containers/Projects/components/ProjectSuggestField.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import intl from 'react-intl-universal'; diff --git a/src/containers/Projects/components/ProjectsSelect.tsx b/src/containers/Projects/components/ProjectsSelect.tsx index 835b1d702..7b95f69a5 100644 --- a/src/containers/Projects/components/ProjectsSelect.tsx +++ b/src/containers/Projects/components/ProjectsSelect.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { MenuItem, Button } from '@blueprintjs/core'; diff --git a/src/containers/Projects/components/TaskSelect.tsx b/src/containers/Projects/components/TaskSelect.tsx index 342c2462b..7de26bd8c 100644 --- a/src/containers/Projects/components/TaskSelect.tsx +++ b/src/containers/Projects/components/TaskSelect.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { MenuItem, Button } from '@blueprintjs/core'; diff --git a/src/containers/Projects/components/index.ts b/src/containers/Projects/components/index.ts index 5a15d6891..b27dbd340 100644 --- a/src/containers/Projects/components/index.ts +++ b/src/containers/Projects/components/index.ts @@ -1,3 +1,4 @@ +// @ts-nocheck export * from './ExpenseSelect'; export * from './ChangeTypesSelect'; export * from './TaskSelect'; diff --git a/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpense.schema.tsx b/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpense.schema.tsx index 72c46169d..26e0cd6d1 100644 --- a/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpense.schema.tsx +++ b/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpense.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; diff --git a/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseForm.tsx b/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseForm.tsx index 28eb4e7e1..bb195cbbf 100644 --- a/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseForm.tsx +++ b/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Formik } from 'formik'; import { AppToaster } from '@/components'; diff --git a/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormChargeFields.tsx b/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormChargeFields.tsx index aec4c3428..85feda37c 100644 --- a/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormChargeFields.tsx +++ b/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormChargeFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Classes, ControlGroup } from '@blueprintjs/core'; diff --git a/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormConent.tsx b/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormConent.tsx index 055f3027d..859407bd2 100644 --- a/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormConent.tsx +++ b/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormConent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Form } from 'formik'; import EstimatedExpenseFormFields from './EstimatedExpenseFormFields'; diff --git a/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormDialogContent.tsx b/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormDialogContent.tsx index 369a1b92b..0b7f77023 100644 --- a/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormDialogContent.tsx +++ b/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { EstimatedExpenseFormProvider } from './EstimatedExpenseFormProvider'; import EstimatedExpenseForm from './EstimatedExpenseForm'; diff --git a/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormFields.tsx b/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormFields.tsx index d21f657c0..b504f05f0 100644 --- a/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormFields.tsx +++ b/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import intl from 'react-intl-universal'; diff --git a/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormFloatingActions.tsx b/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormFloatingActions.tsx index 75488405c..14b8faf30 100644 --- a/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormFloatingActions.tsx +++ b/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; import { Intent, Button, Classes } from '@blueprintjs/core'; diff --git a/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormProvider.tsx b/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormProvider.tsx index 0ec265aea..d9784d5a8 100644 --- a/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormProvider.tsx +++ b/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DialogContent } from '@/components'; diff --git a/src/containers/Projects/containers/EstimatedExpenseFormDialog/index.tsx b/src/containers/Projects/containers/EstimatedExpenseFormDialog/index.tsx index 38a3a988a..9734a8067 100644 --- a/src/containers/Projects/containers/EstimatedExpenseFormDialog/index.tsx +++ b/src/containers/Projects/containers/EstimatedExpenseFormDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Projects/containers/ProjectAlerts/ProjectDeleteAlert.tsx b/src/containers/Projects/containers/ProjectAlerts/ProjectDeleteAlert.tsx index d5544f186..21d3d4ab4 100644 --- a/src/containers/Projects/containers/ProjectAlerts/ProjectDeleteAlert.tsx +++ b/src/containers/Projects/containers/ProjectAlerts/ProjectDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { FormattedMessage as T, FormattedHTMLMessage } from '@/components'; diff --git a/src/containers/Projects/containers/ProjectAlerts/ProjectStatusAlert.tsx b/src/containers/Projects/containers/ProjectAlerts/ProjectStatusAlert.tsx index 886c65070..88bb0c33b 100644 --- a/src/containers/Projects/containers/ProjectAlerts/ProjectStatusAlert.tsx +++ b/src/containers/Projects/containers/ProjectAlerts/ProjectStatusAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { FormattedMessage as T, FormattedHTMLMessage } from '@/components'; diff --git a/src/containers/Projects/containers/ProjectAlerts/ProjectTaskDeleteAlert.tsx b/src/containers/Projects/containers/ProjectAlerts/ProjectTaskDeleteAlert.tsx index 4cbfa3b21..caa34df0a 100644 --- a/src/containers/Projects/containers/ProjectAlerts/ProjectTaskDeleteAlert.tsx +++ b/src/containers/Projects/containers/ProjectAlerts/ProjectTaskDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { FormattedMessage as T, FormattedHTMLMessage } from '@/components'; diff --git a/src/containers/Projects/containers/ProjectAlerts/ProjectTimesheetDeleteAlert.tsx b/src/containers/Projects/containers/ProjectAlerts/ProjectTimesheetDeleteAlert.tsx index 7d9789270..ab9c08399 100644 --- a/src/containers/Projects/containers/ProjectAlerts/ProjectTimesheetDeleteAlert.tsx +++ b/src/containers/Projects/containers/ProjectAlerts/ProjectTimesheetDeleteAlert.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { FormattedMessage as T, FormattedHTMLMessage } from '@/components'; diff --git a/src/containers/Projects/containers/ProjectAlerts/index.ts b/src/containers/Projects/containers/ProjectAlerts/index.ts index f5c255e5b..27a4ec89c 100644 --- a/src/containers/Projects/containers/ProjectAlerts/index.ts +++ b/src/containers/Projects/containers/ProjectAlerts/index.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; const ProjectDeleteAlert = React.lazy(() => import('./ProjectDeleteAlert')); diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectDetailActionsBar.tsx b/src/containers/Projects/containers/ProjectDetails/ProjectDetailActionsBar.tsx index cf4254220..b683fc017 100644 --- a/src/containers/Projects/containers/ProjectDetails/ProjectDetailActionsBar.tsx +++ b/src/containers/Projects/containers/ProjectDetails/ProjectDetailActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; import { diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectDetailProvider.tsx b/src/containers/Projects/containers/ProjectDetails/ProjectDetailProvider.tsx index 3768b11b2..1fc02bcf5 100644 --- a/src/containers/Projects/containers/ProjectDetails/ProjectDetailProvider.tsx +++ b/src/containers/Projects/containers/ProjectDetails/ProjectDetailProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DashboardInsider } from '@/components'; diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectDetailTabs.tsx b/src/containers/Projects/containers/ProjectDetails/ProjectDetailTabs.tsx index b83d9c975..9e57b41fe 100644 --- a/src/containers/Projects/containers/ProjectDetails/ProjectDetailTabs.tsx +++ b/src/containers/Projects/containers/ProjectDetails/ProjectDetailTabs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import intl from 'react-intl-universal'; diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectPurchasesTable/ProjectPurchasesTable.tsx b/src/containers/Projects/containers/ProjectDetails/ProjectPurchasesTable/ProjectPurchasesTable.tsx index c44939991..058989e19 100644 --- a/src/containers/Projects/containers/ProjectDetails/ProjectPurchasesTable/ProjectPurchasesTable.tsx +++ b/src/containers/Projects/containers/ProjectDetails/ProjectPurchasesTable/ProjectPurchasesTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectPurchasesTable/components.tsx b/src/containers/Projects/containers/ProjectDetails/ProjectPurchasesTable/components.tsx index f73bfe5cc..aa404608c 100644 --- a/src/containers/Projects/containers/ProjectDetails/ProjectPurchasesTable/components.tsx +++ b/src/containers/Projects/containers/ProjectDetails/ProjectPurchasesTable/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Icon } from '@/components'; diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectPurchasesTable/hooks.ts b/src/containers/Projects/containers/ProjectDetails/ProjectPurchasesTable/hooks.ts index 724b413c2..1570cc543 100644 --- a/src/containers/Projects/containers/ProjectDetails/ProjectPurchasesTable/hooks.ts +++ b/src/containers/Projects/containers/ProjectDetails/ProjectPurchasesTable/hooks.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import { useMemo } from 'react'; import intl from 'react-intl-universal'; import clsx from 'classnames'; diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectPurchasesTable/index.tsx b/src/containers/Projects/containers/ProjectDetails/ProjectPurchasesTable/index.tsx index cf14b1a26..24a221539 100644 --- a/src/containers/Projects/containers/ProjectDetails/ProjectPurchasesTable/index.tsx +++ b/src/containers/Projects/containers/ProjectDetails/ProjectPurchasesTable/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { ProjectPurchasesTable } from './ProjectPurchasesTable'; diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectSalesTable/ProjectSalesTable.tsx b/src/containers/Projects/containers/ProjectDetails/ProjectSalesTable/ProjectSalesTable.tsx index 9cfa47102..cd3909dac 100644 --- a/src/containers/Projects/containers/ProjectDetails/ProjectSalesTable/ProjectSalesTable.tsx +++ b/src/containers/Projects/containers/ProjectDetails/ProjectSalesTable/ProjectSalesTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DataTable, diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectSalesTable/components.tsx b/src/containers/Projects/containers/ProjectDetails/ProjectSalesTable/components.tsx index 1b1a917a8..70fedf2ab 100644 --- a/src/containers/Projects/containers/ProjectDetails/ProjectSalesTable/components.tsx +++ b/src/containers/Projects/containers/ProjectDetails/ProjectSalesTable/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectSalesTable/hooks.ts b/src/containers/Projects/containers/ProjectDetails/ProjectSalesTable/hooks.ts index e0f45122d..8ddf0d4d7 100644 --- a/src/containers/Projects/containers/ProjectDetails/ProjectSalesTable/hooks.ts +++ b/src/containers/Projects/containers/ProjectDetails/ProjectSalesTable/hooks.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import { useMemo } from 'react'; import intl from 'react-intl-universal'; import clsx from 'classnames'; diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectSalesTable/index.tsx b/src/containers/Projects/containers/ProjectDetails/ProjectSalesTable/index.tsx index 4c4c2c0bb..b548b33a8 100644 --- a/src/containers/Projects/containers/ProjectDetails/ProjectSalesTable/index.tsx +++ b/src/containers/Projects/containers/ProjectDetails/ProjectSalesTable/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { ProjectSalesTable } from './ProjectSalesTable'; diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectTasks/ProjectTaskProvider.tsx b/src/containers/Projects/containers/ProjectDetails/ProjectTasks/ProjectTaskProvider.tsx index 840ca0804..73089b70a 100644 --- a/src/containers/Projects/containers/ProjectDetails/ProjectTasks/ProjectTaskProvider.tsx +++ b/src/containers/Projects/containers/ProjectDetails/ProjectTasks/ProjectTaskProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useParams } from 'react-router-dom'; import { useProjectTasks, useProject } from '../../../hooks'; diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectTasks/ProjectTasksHeader.tsx b/src/containers/Projects/containers/ProjectDetails/ProjectTasks/ProjectTasksHeader.tsx index f6e86bd66..3a04157a2 100644 --- a/src/containers/Projects/containers/ProjectDetails/ProjectTasks/ProjectTasksHeader.tsx +++ b/src/containers/Projects/containers/ProjectDetails/ProjectTasks/ProjectTasksHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent } from '@blueprintjs/core'; import { FormatDate } from '@/components'; diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectTasks/ProjectTasksTable.tsx b/src/containers/Projects/containers/ProjectDetails/ProjectTasks/ProjectTasksTable.tsx index 921167d70..eaeaedaa0 100644 --- a/src/containers/Projects/containers/ProjectDetails/ProjectTasks/ProjectTasksTable.tsx +++ b/src/containers/Projects/containers/ProjectDetails/ProjectTasks/ProjectTasksTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectTasks/components.tsx b/src/containers/Projects/containers/ProjectDetails/ProjectTasks/components.tsx index 9e74e0e31..ff4c1bf9f 100644 --- a/src/containers/Projects/containers/ProjectDetails/ProjectTasks/components.tsx +++ b/src/containers/Projects/containers/ProjectDetails/ProjectTasks/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectTasks/hooks.ts b/src/containers/Projects/containers/ProjectDetails/ProjectTasks/hooks.ts index 74ae32ad9..13e567f9e 100644 --- a/src/containers/Projects/containers/ProjectDetails/ProjectTasks/hooks.ts +++ b/src/containers/Projects/containers/ProjectDetails/ProjectTasks/hooks.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { TaskAccessor } from './components'; diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectTasks/index.tsx b/src/containers/Projects/containers/ProjectDetails/ProjectTasks/index.tsx index 1a4f0f555..75a572f2a 100644 --- a/src/containers/Projects/containers/ProjectDetails/ProjectTasks/index.tsx +++ b/src/containers/Projects/containers/ProjectDetails/ProjectTasks/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/ProjectTimesheetsHeader.tsx b/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/ProjectTimesheetsHeader.tsx index 609ee7908..c0d6dde54 100644 --- a/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/ProjectTimesheetsHeader.tsx +++ b/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/ProjectTimesheetsHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/ProjectTimesheetsProvider.tsx b/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/ProjectTimesheetsProvider.tsx index 8cf718b9d..4d1cdf61f 100644 --- a/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/ProjectTimesheetsProvider.tsx +++ b/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/ProjectTimesheetsProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useParams } from 'react-router-dom'; import { useProject, useProjectTimeEntries } from '../../../hooks'; diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/ProjectTimesheetsTable.tsx b/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/ProjectTimesheetsTable.tsx index 7efbf6ff8..1e83a8762 100644 --- a/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/ProjectTimesheetsTable.tsx +++ b/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/ProjectTimesheetsTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/components.tsx b/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/components.tsx index bbc7f1918..430a112f9 100644 --- a/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/components.tsx +++ b/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/hooks.ts b/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/hooks.ts index dcc9a5c9d..3d44b09bb 100644 --- a/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/hooks.ts +++ b/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/hooks.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { AvatarCell, TimesheetAccessor } from './components'; diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/index.tsx b/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/index.tsx index 62b1872e1..ccf2419d7 100644 --- a/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/index.tsx +++ b/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/Projects/containers/ProjectDetails/common.ts b/src/containers/Projects/containers/ProjectDetails/common.ts index 432d142fe..164db1621 100644 --- a/src/containers/Projects/containers/ProjectDetails/common.ts +++ b/src/containers/Projects/containers/ProjectDetails/common.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; export const projectTranslations = [ diff --git a/src/containers/Projects/containers/ProjectDetails/components/FinancialSection.tsx b/src/containers/Projects/containers/ProjectDetails/components/FinancialSection.tsx index 5533e1660..4905021a6 100644 --- a/src/containers/Projects/containers/ProjectDetails/components/FinancialSection.tsx +++ b/src/containers/Projects/containers/ProjectDetails/components/FinancialSection.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { ProgressBar } from '@blueprintjs/core'; diff --git a/src/containers/Projects/containers/ProjectDetails/components/ProjectTransactionsSelect.tsx b/src/containers/Projects/containers/ProjectDetails/components/ProjectTransactionsSelect.tsx index c752ffc32..e6539a434 100644 --- a/src/containers/Projects/containers/ProjectDetails/components/ProjectTransactionsSelect.tsx +++ b/src/containers/Projects/containers/ProjectDetails/components/ProjectTransactionsSelect.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { MenuItem, diff --git a/src/containers/Projects/containers/ProjectDetails/components/index.tsx b/src/containers/Projects/containers/ProjectDetails/components/index.tsx index 2a9e9fb63..fc09d0212 100644 --- a/src/containers/Projects/containers/ProjectDetails/components/index.tsx +++ b/src/containers/Projects/containers/ProjectDetails/components/index.tsx @@ -1,2 +1,3 @@ +// @ts-nocheck export * from './ProjectTransactionsSelect'; export * from './FinancialSection'; diff --git a/src/containers/Projects/containers/ProjectDetails/index.tsx b/src/containers/Projects/containers/ProjectDetails/index.tsx index 6ea07ee5c..4f43717ea 100644 --- a/src/containers/Projects/containers/ProjectDetails/index.tsx +++ b/src/containers/Projects/containers/ProjectDetails/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect } from 'react'; import { useLocation } from 'react-router-dom'; import ProjectDetailActionsBar from './ProjectDetailActionsBar'; diff --git a/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseForm.schema.tsx b/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseForm.schema.tsx index d208b8004..2c6e0e5f8 100644 --- a/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseForm.schema.tsx +++ b/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; diff --git a/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseForm.tsx b/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseForm.tsx index e15109018..219f2b559 100644 --- a/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseForm.tsx +++ b/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import intl from 'react-intl-universal'; diff --git a/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormChargeFields.tsx b/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormChargeFields.tsx index 0851bb247..5274a12d4 100644 --- a/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormChargeFields.tsx +++ b/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormChargeFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Classes, ControlGroup } from '@blueprintjs/core'; diff --git a/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormContent.tsx b/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormContent.tsx index 6cab3f4b8..111e0342e 100644 --- a/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormContent.tsx +++ b/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Form } from 'formik'; import ProjectExpenseFormFields from './ProjectExpenseFormFields'; diff --git a/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormDialogContent.tsx b/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormDialogContent.tsx index 5cb1a4518..c0e5f7346 100644 --- a/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormDialogContent.tsx +++ b/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { ProjectExpenseFormProvider } from './ProjectExpenseFormProvider'; import ProjectExpenseForm from './ProjectExpenseForm'; diff --git a/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormFields.tsx b/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormFields.tsx index 5a2122d57..996cd9e70 100644 --- a/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormFields.tsx +++ b/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import intl from 'react-intl-universal'; diff --git a/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormProvider.tsx b/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormProvider.tsx index a47afeb5d..b135fdf33 100644 --- a/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormProvider.tsx +++ b/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DialogContent } from '@/components'; diff --git a/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpneseFormFloatingActions.tsx b/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpneseFormFloatingActions.tsx index 6acd25d6f..3d3348fe6 100644 --- a/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpneseFormFloatingActions.tsx +++ b/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpneseFormFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; import { Intent, Button, Classes } from '@blueprintjs/core'; diff --git a/src/containers/Projects/containers/ProjectExpenseForm/index.tsx b/src/containers/Projects/containers/ProjectExpenseForm/index.tsx index b11f96c2c..79c72836d 100644 --- a/src/containers/Projects/containers/ProjectExpenseForm/index.tsx +++ b/src/containers/Projects/containers/ProjectExpenseForm/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Projects/containers/ProjectFormDialog/ProjectForm.schema.tsx b/src/containers/Projects/containers/ProjectFormDialog/ProjectForm.schema.tsx index 03e6ff34b..12bb43f8c 100644 --- a/src/containers/Projects/containers/ProjectFormDialog/ProjectForm.schema.tsx +++ b/src/containers/Projects/containers/ProjectFormDialog/ProjectForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; diff --git a/src/containers/Projects/containers/ProjectFormDialog/ProjectForm.tsx b/src/containers/Projects/containers/ProjectFormDialog/ProjectForm.tsx index 67bc43e0d..306c4d01d 100644 --- a/src/containers/Projects/containers/ProjectFormDialog/ProjectForm.tsx +++ b/src/containers/Projects/containers/ProjectFormDialog/ProjectForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import intl from 'react-intl-universal'; diff --git a/src/containers/Projects/containers/ProjectFormDialog/ProjectFormContent.tsx b/src/containers/Projects/containers/ProjectFormDialog/ProjectFormContent.tsx index 0bcbed687..e44595281 100644 --- a/src/containers/Projects/containers/ProjectFormDialog/ProjectFormContent.tsx +++ b/src/containers/Projects/containers/ProjectFormDialog/ProjectFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Form } from 'formik'; diff --git a/src/containers/Projects/containers/ProjectFormDialog/ProjectFormDialogContent.tsx b/src/containers/Projects/containers/ProjectFormDialog/ProjectFormDialogContent.tsx index 63921866e..127c218f1 100644 --- a/src/containers/Projects/containers/ProjectFormDialog/ProjectFormDialogContent.tsx +++ b/src/containers/Projects/containers/ProjectFormDialog/ProjectFormDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { ProjectFormProvider } from './ProjectFormProvider'; diff --git a/src/containers/Projects/containers/ProjectFormDialog/ProjectFormFields.tsx b/src/containers/Projects/containers/ProjectFormDialog/ProjectFormFields.tsx index bc1f47f25..006d57f58 100644 --- a/src/containers/Projects/containers/ProjectFormDialog/ProjectFormFields.tsx +++ b/src/containers/Projects/containers/ProjectFormDialog/ProjectFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Projects/containers/ProjectFormDialog/ProjectFormFloatingActions.tsx b/src/containers/Projects/containers/ProjectFormDialog/ProjectFormFloatingActions.tsx index de8f89d99..9384ae986 100644 --- a/src/containers/Projects/containers/ProjectFormDialog/ProjectFormFloatingActions.tsx +++ b/src/containers/Projects/containers/ProjectFormDialog/ProjectFormFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; import { Intent, Button, Classes } from '@blueprintjs/core'; diff --git a/src/containers/Projects/containers/ProjectFormDialog/ProjectFormProvider.tsx b/src/containers/Projects/containers/ProjectFormDialog/ProjectFormProvider.tsx index 319fb9d3a..f69243fdb 100644 --- a/src/containers/Projects/containers/ProjectFormDialog/ProjectFormProvider.tsx +++ b/src/containers/Projects/containers/ProjectFormDialog/ProjectFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useCustomers } from '@/hooks/query'; import { useCreateProject, useEditProject, useProject } from '../../hooks'; diff --git a/src/containers/Projects/containers/ProjectFormDialog/index.tsx b/src/containers/Projects/containers/ProjectFormDialog/index.tsx index 04cf9d172..6f0e5c147 100644 --- a/src/containers/Projects/containers/ProjectFormDialog/index.tsx +++ b/src/containers/Projects/containers/ProjectFormDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingForm.schema.tsx b/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingForm.schema.tsx index cd7d6e354..dcc824413 100644 --- a/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingForm.schema.tsx +++ b/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; diff --git a/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingForm.tsx b/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingForm.tsx index 4e854c417..7b7921479 100644 --- a/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingForm.tsx +++ b/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import intl from 'react-intl-universal'; diff --git a/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormContent.tsx b/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormContent.tsx index 56d344e29..921ba3770 100644 --- a/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormContent.tsx +++ b/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Form } from 'formik'; diff --git a/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormDialogContent.tsx b/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormDialogContent.tsx index 430976741..59ab82438 100644 --- a/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormDialogContent.tsx +++ b/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { ProjectInvoicingFormProvider } from './ProjectInvoicingFormProvider'; diff --git a/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormFields.tsx b/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormFields.tsx index fbff97bd0..e383d7897 100644 --- a/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormFields.tsx +++ b/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; diff --git a/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormFloatingActions.tsx b/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormFloatingActions.tsx index 3edbe195a..a1450c5aa 100644 --- a/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormFloatingActions.tsx +++ b/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; import { Intent, Button, Classes } from '@blueprintjs/core'; diff --git a/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormProvider.tsx b/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormProvider.tsx index 8e0b65d7f..a25122fdc 100644 --- a/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormProvider.tsx +++ b/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DialogContent } from '@/components'; diff --git a/src/containers/Projects/containers/ProjectInvoicingFormDialog/index.tsx b/src/containers/Projects/containers/ProjectInvoicingFormDialog/index.tsx index 085ef01d9..281b46001 100644 --- a/src/containers/Projects/containers/ProjectInvoicingFormDialog/index.tsx +++ b/src/containers/Projects/containers/ProjectInvoicingFormDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskForm.schema.tsx b/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskForm.schema.tsx index 939a69ce5..72ed5507e 100644 --- a/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskForm.schema.tsx +++ b/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; diff --git a/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskForm.tsx b/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskForm.tsx index 0093c5b4c..cb18b404d 100644 --- a/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskForm.tsx +++ b/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Formik } from 'formik'; diff --git a/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormContent.tsx b/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormContent.tsx index b720b2837..0caa8ed76 100644 --- a/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormContent.tsx +++ b/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Form } from 'formik'; import ProjectTaskFormFields from './ProjectTaskFormFields'; diff --git a/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormDialogContent.tsx b/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormDialogContent.tsx index 4b97b1278..0bb824505 100644 --- a/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormDialogContent.tsx +++ b/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { ProjectTaskFormProvider } from './ProjectTaskFormProvider'; import ProjectTaskForm from './ProjectTaskForm'; diff --git a/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormFields.tsx b/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormFields.tsx index 8abc41ef0..f147f6c93 100644 --- a/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormFields.tsx +++ b/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; import { Classes, ControlGroup } from '@blueprintjs/core'; diff --git a/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormFloatingActions.tsx b/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormFloatingActions.tsx index f09761a17..0c1174ba6 100644 --- a/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormFloatingActions.tsx +++ b/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; import { Intent, Button, Classes } from '@blueprintjs/core'; diff --git a/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormProvider.tsx b/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormProvider.tsx index dc38c22c9..ddbf5c79b 100644 --- a/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormProvider.tsx +++ b/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useCreateProjectTask, diff --git a/src/containers/Projects/containers/ProjectTaskFormDialog/index.tsx b/src/containers/Projects/containers/ProjectTaskFormDialog/index.tsx index 6aa50661d..93383d4dd 100644 --- a/src/containers/Projects/containers/ProjectTaskFormDialog/index.tsx +++ b/src/containers/Projects/containers/ProjectTaskFormDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Projects/containers/ProjectTaskFormDialog/utils.tsx b/src/containers/Projects/containers/ProjectTaskFormDialog/utils.tsx index 389f05e33..5ae5414af 100644 --- a/src/containers/Projects/containers/ProjectTaskFormDialog/utils.tsx +++ b/src/containers/Projects/containers/ProjectTaskFormDialog/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import _ from 'lodash'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryForm.schema.tsx b/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryForm.schema.tsx index e1a6fe5ec..b8ff72af7 100644 --- a/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryForm.schema.tsx +++ b/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; import { DATATYPES_LENGTH } from '@/constants/dataTypes'; diff --git a/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryForm.tsx b/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryForm.tsx index 810214949..f373c5e70 100644 --- a/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryForm.tsx +++ b/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import intl from 'react-intl-universal'; diff --git a/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormContent.tsx b/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormContent.tsx index de6ff58eb..6ee6ea25d 100644 --- a/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormContent.tsx +++ b/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Form } from 'formik'; import ProjectTimeEntryFormFields from './ProjectTimeEntryFormFields'; diff --git a/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormDialogContent.tsx b/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormDialogContent.tsx index 99462de37..d910225e0 100644 --- a/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormDialogContent.tsx +++ b/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormDialogContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { ProjectTimeEntryFormProvider } from './ProjectTimeEntryFormProvider'; import ProjectTimeEntryForm from './ProjectTimeEntryForm'; diff --git a/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormFields.tsx b/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormFields.tsx index 35ec95266..5d9fdd1a5 100644 --- a/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormFields.tsx +++ b/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormFloatingActions.tsx b/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormFloatingActions.tsx index 1c211eb56..080764f48 100644 --- a/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormFloatingActions.tsx +++ b/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; import { Intent, Button, Classes } from '@blueprintjs/core'; diff --git a/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormProvider.tsx b/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormProvider.tsx index 14b3c9bb7..d3013b858 100644 --- a/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormProvider.tsx +++ b/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useProjects, diff --git a/src/containers/Projects/containers/ProjectTimeEntryFormDialog/index.tsx b/src/containers/Projects/containers/ProjectTimeEntryFormDialog/index.tsx index e72ef1b74..377a4ad4d 100644 --- a/src/containers/Projects/containers/ProjectTimeEntryFormDialog/index.tsx +++ b/src/containers/Projects/containers/ProjectTimeEntryFormDialog/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { Dialog, DialogSuspense, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Projects/containers/ProjectTimeEntryFormDialog/utils.ts b/src/containers/Projects/containers/ProjectTimeEntryFormDialog/utils.ts index 5930df458..5e78425e3 100644 --- a/src/containers/Projects/containers/ProjectTimeEntryFormDialog/utils.ts +++ b/src/containers/Projects/containers/ProjectTimeEntryFormDialog/utils.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { isNull } from 'lodash'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Projects/containers/ProjectsLanding/ProjectsActionsBar.tsx b/src/containers/Projects/containers/ProjectsLanding/ProjectsActionsBar.tsx index 2e6ae493c..f7b309e1a 100644 --- a/src/containers/Projects/containers/ProjectsLanding/ProjectsActionsBar.tsx +++ b/src/containers/Projects/containers/ProjectsLanding/ProjectsActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, diff --git a/src/containers/Projects/containers/ProjectsLanding/ProjectsDataTable.tsx b/src/containers/Projects/containers/ProjectsLanding/ProjectsDataTable.tsx index 9ed376a98..299431d7a 100644 --- a/src/containers/Projects/containers/ProjectsLanding/ProjectsDataTable.tsx +++ b/src/containers/Projects/containers/ProjectsLanding/ProjectsDataTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Projects/containers/ProjectsLanding/ProjectsEmptyStatus.tsx b/src/containers/Projects/containers/ProjectsLanding/ProjectsEmptyStatus.tsx index d39c323a2..de035df13 100644 --- a/src/containers/Projects/containers/ProjectsLanding/ProjectsEmptyStatus.tsx +++ b/src/containers/Projects/containers/ProjectsLanding/ProjectsEmptyStatus.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, Intent } from '@blueprintjs/core'; import { EmptyStatus, Can, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Projects/containers/ProjectsLanding/ProjectsList.tsx b/src/containers/Projects/containers/ProjectsLanding/ProjectsList.tsx index 36442fb9b..74103793c 100644 --- a/src/containers/Projects/containers/ProjectsLanding/ProjectsList.tsx +++ b/src/containers/Projects/containers/ProjectsLanding/ProjectsList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DashboardPageContent, DashboardContentTable } from '@/components'; diff --git a/src/containers/Projects/containers/ProjectsLanding/ProjectsListProvider.tsx b/src/containers/Projects/containers/ProjectsLanding/ProjectsListProvider.tsx index 1b47bc919..8f8cc4728 100644 --- a/src/containers/Projects/containers/ProjectsLanding/ProjectsListProvider.tsx +++ b/src/containers/Projects/containers/ProjectsLanding/ProjectsListProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { isEmpty } from 'lodash'; import { useResourceViews, useResourceMeta } from '@/hooks/query'; diff --git a/src/containers/Projects/containers/ProjectsLanding/ProjectsViewTabs.tsx b/src/containers/Projects/containers/ProjectsLanding/ProjectsViewTabs.tsx index eaa142121..89498ce43 100644 --- a/src/containers/Projects/containers/ProjectsLanding/ProjectsViewTabs.tsx +++ b/src/containers/Projects/containers/ProjectsLanding/ProjectsViewTabs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Alignment, Navbar, NavbarGroup } from '@blueprintjs/core'; diff --git a/src/containers/Projects/containers/ProjectsLanding/components.tsx b/src/containers/Projects/containers/ProjectsLanding/components.tsx index 77dedf738..247a8c976 100644 --- a/src/containers/Projects/containers/ProjectsLanding/components.tsx +++ b/src/containers/Projects/containers/ProjectsLanding/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Projects/containers/ProjectsLanding/withProjects.tsx b/src/containers/Projects/containers/ProjectsLanding/withProjects.tsx index 4035c79f1..a74ed533b 100644 --- a/src/containers/Projects/containers/ProjectsLanding/withProjects.tsx +++ b/src/containers/Projects/containers/ProjectsLanding/withProjects.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getProjectsTableStateFactory, diff --git a/src/containers/Projects/containers/ProjectsLanding/withProjectsActions.tsx b/src/containers/Projects/containers/ProjectsLanding/withProjectsActions.tsx index 4504942e7..af6f95106 100644 --- a/src/containers/Projects/containers/ProjectsLanding/withProjectsActions.tsx +++ b/src/containers/Projects/containers/ProjectsLanding/withProjectsActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { diff --git a/src/containers/Projects/containers/common/modalChargeOptions.ts b/src/containers/Projects/containers/common/modalChargeOptions.ts index 025175ba3..275423040 100644 --- a/src/containers/Projects/containers/common/modalChargeOptions.ts +++ b/src/containers/Projects/containers/common/modalChargeOptions.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; export const taskChargeOptions = [ diff --git a/src/containers/Projects/hooks/index.ts b/src/containers/Projects/hooks/index.ts index 544277616..a11ae4b2f 100644 --- a/src/containers/Projects/hooks/index.ts +++ b/src/containers/Projects/hooks/index.ts @@ -1,3 +1,4 @@ +// @ts-nocheck export * from './projects' export * from './projectsTask' export * from './projectTimeEntry' \ No newline at end of file diff --git a/src/containers/Projects/hooks/projectTimeEntry.tsx b/src/containers/Projects/hooks/projectTimeEntry.tsx index 823e8a224..d864093d7 100644 --- a/src/containers/Projects/hooks/projectTimeEntry.tsx +++ b/src/containers/Projects/hooks/projectTimeEntry.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useQueryClient, useMutation } from 'react-query'; import { useRequestQuery } from '@/hooks/useQueryRequest'; import useApiRequest from '@/hooks/useRequest'; diff --git a/src/containers/Projects/hooks/projects.ts b/src/containers/Projects/hooks/projects.ts index ed48f954b..b256ed7b8 100644 --- a/src/containers/Projects/hooks/projects.ts +++ b/src/containers/Projects/hooks/projects.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import { useQueryClient, useMutation } from 'react-query'; import { useRequestQuery } from '@/hooks/useQueryRequest'; import { transformPagination } from '@/utils'; diff --git a/src/containers/Projects/hooks/projectsTask.tsx b/src/containers/Projects/hooks/projectsTask.tsx index e5bc282ff..b5f6316f4 100644 --- a/src/containers/Projects/hooks/projectsTask.tsx +++ b/src/containers/Projects/hooks/projectsTask.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useQueryClient, useMutation } from 'react-query'; import { useRequestQuery } from '@/hooks/useQueryRequest'; import useApiRequest from '@/hooks/useRequest'; diff --git a/src/containers/Projects/hooks/type.ts b/src/containers/Projects/hooks/type.ts index 72f12914c..5efe21135 100644 --- a/src/containers/Projects/hooks/type.ts +++ b/src/containers/Projects/hooks/type.ts @@ -1,3 +1,4 @@ +// @ts-nocheck const CUSTOMERS = { CUSTOMERS: 'CUSTOMERS', CUSTOMER: 'CUSTOMER', diff --git a/src/containers/Projects/index.ts b/src/containers/Projects/index.ts deleted file mode 100644 index e69de29bb..000000000 diff --git a/src/containers/Purchases/Bills/BillForm/BillFloatingActions.tsx b/src/containers/Purchases/Bills/BillForm/BillFloatingActions.tsx index a0435df99..e326102f0 100644 --- a/src/containers/Purchases/Bills/BillForm/BillFloatingActions.tsx +++ b/src/containers/Purchases/Bills/BillForm/BillFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, diff --git a/src/containers/Purchases/Bills/BillForm/BillForm.schema.tsx b/src/containers/Purchases/Bills/BillForm/BillForm.schema.tsx index 07d1899d6..a80f45063 100644 --- a/src/containers/Purchases/Bills/BillForm/BillForm.schema.tsx +++ b/src/containers/Purchases/Bills/BillForm/BillForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import moment from 'moment'; import intl from 'react-intl-universal'; diff --git a/src/containers/Purchases/Bills/BillForm/BillForm.tsx b/src/containers/Purchases/Bills/BillForm/BillForm.tsx index 1dc50e4aa..90d5a5583 100644 --- a/src/containers/Purchases/Bills/BillForm/BillForm.tsx +++ b/src/containers/Purchases/Bills/BillForm/BillForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import intl from 'react-intl-universal'; import classNames from 'classnames'; diff --git a/src/containers/Purchases/Bills/BillForm/BillFormCurrencyTag.tsx b/src/containers/Purchases/Bills/BillForm/BillFormCurrencyTag.tsx index 62ca88a6d..b0486d15c 100644 --- a/src/containers/Purchases/Bills/BillForm/BillFormCurrencyTag.tsx +++ b/src/containers/Purchases/Bills/BillForm/BillFormCurrencyTag.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { BaseCurrency, BaseCurrencyRoot } from '@/components'; import { useBillFormContext } from './BillFormProvider'; diff --git a/src/containers/Purchases/Bills/BillForm/BillFormFooter.tsx b/src/containers/Purchases/Bills/BillForm/BillFormFooter.tsx index bb295d77a..bd20a7c13 100644 --- a/src/containers/Purchases/Bills/BillForm/BillFormFooter.tsx +++ b/src/containers/Purchases/Bills/BillForm/BillFormFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import styled from 'styled-components'; diff --git a/src/containers/Purchases/Bills/BillForm/BillFormFooterLeft.tsx b/src/containers/Purchases/Bills/BillForm/BillFormFooterLeft.tsx index 7b0d11b0e..57b0ca946 100644 --- a/src/containers/Purchases/Bills/BillForm/BillFormFooterLeft.tsx +++ b/src/containers/Purchases/Bills/BillForm/BillFormFooterLeft.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Purchases/Bills/BillForm/BillFormFooterRight.tsx b/src/containers/Purchases/Bills/BillForm/BillFormFooterRight.tsx index 4a411df5e..825cb8eff 100644 --- a/src/containers/Purchases/Bills/BillForm/BillFormFooterRight.tsx +++ b/src/containers/Purchases/Bills/BillForm/BillFormFooterRight.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/Purchases/Bills/BillForm/BillFormHeader.tsx b/src/containers/Purchases/Bills/BillForm/BillFormHeader.tsx index 4cf2ed8df..6bb3ecdff 100644 --- a/src/containers/Purchases/Bills/BillForm/BillFormHeader.tsx +++ b/src/containers/Purchases/Bills/BillForm/BillFormHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import intl from 'react-intl-universal'; import classNames from 'classnames'; diff --git a/src/containers/Purchases/Bills/BillForm/BillFormHeaderFields.tsx b/src/containers/Purchases/Bills/BillForm/BillFormHeaderFields.tsx index 0c36d7fb9..4234067cd 100644 --- a/src/containers/Purchases/Bills/BillForm/BillFormHeaderFields.tsx +++ b/src/containers/Purchases/Bills/BillForm/BillFormHeaderFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import classNames from 'classnames'; diff --git a/src/containers/Purchases/Bills/BillForm/BillFormPage.tsx b/src/containers/Purchases/Bills/BillForm/BillFormPage.tsx index 9e46c4bc7..215e1da0e 100644 --- a/src/containers/Purchases/Bills/BillForm/BillFormPage.tsx +++ b/src/containers/Purchases/Bills/BillForm/BillFormPage.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useParams } from 'react-router-dom'; diff --git a/src/containers/Purchases/Bills/BillForm/BillFormProvider.tsx b/src/containers/Purchases/Bills/BillForm/BillFormProvider.tsx index ae38ef493..af4f4950f 100644 --- a/src/containers/Purchases/Bills/BillForm/BillFormProvider.tsx +++ b/src/containers/Purchases/Bills/BillForm/BillFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useState } from 'react'; import { Features } from '@/constants'; import { useFeatureCan } from '@/hooks/state'; diff --git a/src/containers/Purchases/Bills/BillForm/BillFormTopBar.tsx b/src/containers/Purchases/Bills/BillForm/BillFormTopBar.tsx index f2dfe85cd..dcccafddd 100644 --- a/src/containers/Purchases/Bills/BillForm/BillFormTopBar.tsx +++ b/src/containers/Purchases/Bills/BillForm/BillFormTopBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { diff --git a/src/containers/Purchases/Bills/BillForm/BillItemsEntriesEditor.tsx b/src/containers/Purchases/Bills/BillForm/BillItemsEntriesEditor.tsx index c0ccb21c6..4f0d3b773 100644 --- a/src/containers/Purchases/Bills/BillForm/BillItemsEntriesEditor.tsx +++ b/src/containers/Purchases/Bills/BillForm/BillItemsEntriesEditor.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import ItemsEntriesTable from '@/containers/Entries/ItemsEntriesTable'; diff --git a/src/containers/Purchases/Bills/BillForm/components.tsx b/src/containers/Purchases/Bills/BillForm/components.tsx index 207cc124e..6ba18c017 100644 --- a/src/containers/Purchases/Bills/BillForm/components.tsx +++ b/src/containers/Purchases/Bills/BillForm/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Button } from '@blueprintjs/core'; diff --git a/src/containers/Purchases/Bills/BillForm/utils.tsx b/src/containers/Purchases/Bills/BillForm/utils.tsx index a2331debd..272ea3a21 100644 --- a/src/containers/Purchases/Bills/BillForm/utils.tsx +++ b/src/containers/Purchases/Bills/BillForm/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import intl from 'react-intl-universal'; diff --git a/src/containers/Purchases/Bills/BillUniversalSearch.tsx b/src/containers/Purchases/Bills/BillUniversalSearch.tsx index fcf286f2e..1861465d0 100644 --- a/src/containers/Purchases/Bills/BillUniversalSearch.tsx +++ b/src/containers/Purchases/Bills/BillUniversalSearch.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { MenuItem } from '@blueprintjs/core'; diff --git a/src/containers/Purchases/Bills/BillsLanding/BillsActionsBar.tsx b/src/containers/Purchases/Bills/BillsLanding/BillsActionsBar.tsx index 5bc7f935c..fdbf3a8ef 100644 --- a/src/containers/Purchases/Bills/BillsLanding/BillsActionsBar.tsx +++ b/src/containers/Purchases/Bills/BillsLanding/BillsActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useState } from 'react'; import { Button, diff --git a/src/containers/Purchases/Bills/BillsLanding/BillsAlerts.tsx b/src/containers/Purchases/Bills/BillsLanding/BillsAlerts.tsx index 43256ee7e..266075f52 100644 --- a/src/containers/Purchases/Bills/BillsLanding/BillsAlerts.tsx +++ b/src/containers/Purchases/Bills/BillsLanding/BillsAlerts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; const BillOpenAlert = React.lazy( diff --git a/src/containers/Purchases/Bills/BillsLanding/BillsEmptyStatus.tsx b/src/containers/Purchases/Bills/BillsLanding/BillsEmptyStatus.tsx index 88208fcc1..f749516d8 100644 --- a/src/containers/Purchases/Bills/BillsLanding/BillsEmptyStatus.tsx +++ b/src/containers/Purchases/Bills/BillsLanding/BillsEmptyStatus.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, Intent } from '@blueprintjs/core'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Purchases/Bills/BillsLanding/BillsList.tsx b/src/containers/Purchases/Bills/BillsLanding/BillsList.tsx index b6f4d6cdb..7e6bb795d 100644 --- a/src/containers/Purchases/Bills/BillsLanding/BillsList.tsx +++ b/src/containers/Purchases/Bills/BillsLanding/BillsList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect } from 'react'; import { DashboardPageContent } from '@/components'; diff --git a/src/containers/Purchases/Bills/BillsLanding/BillsListProvider.tsx b/src/containers/Purchases/Bills/BillsLanding/BillsListProvider.tsx index 112c16fb1..e4e86816e 100644 --- a/src/containers/Purchases/Bills/BillsLanding/BillsListProvider.tsx +++ b/src/containers/Purchases/Bills/BillsLanding/BillsListProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext } from 'react'; import { isEmpty } from 'lodash'; diff --git a/src/containers/Purchases/Bills/BillsLanding/BillsTable.tsx b/src/containers/Purchases/Bills/BillsLanding/BillsTable.tsx index 5db8fd7c0..1d8b8726a 100644 --- a/src/containers/Purchases/Bills/BillsLanding/BillsTable.tsx +++ b/src/containers/Purchases/Bills/BillsLanding/BillsTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Purchases/Bills/BillsLanding/BillsViewsTabs.tsx b/src/containers/Purchases/Bills/BillsLanding/BillsViewsTabs.tsx index 5b0642d31..f79c53037 100644 --- a/src/containers/Purchases/Bills/BillsLanding/BillsViewsTabs.tsx +++ b/src/containers/Purchases/Bills/BillsLanding/BillsViewsTabs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Alignment, Navbar, NavbarGroup } from '@blueprintjs/core'; diff --git a/src/containers/Purchases/Bills/BillsLanding/components.tsx b/src/containers/Purchases/Bills/BillsLanding/components.tsx index 48794bf66..7facf19ee 100644 --- a/src/containers/Purchases/Bills/BillsLanding/components.tsx +++ b/src/containers/Purchases/Bills/BillsLanding/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { diff --git a/src/containers/Purchases/Bills/BillsLanding/withBills.tsx b/src/containers/Purchases/Bills/BillsLanding/withBills.tsx index 72b6d4e2b..6ede8c8e0 100644 --- a/src/containers/Purchases/Bills/BillsLanding/withBills.tsx +++ b/src/containers/Purchases/Bills/BillsLanding/withBills.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getBillsTableStateFactory, diff --git a/src/containers/Purchases/Bills/BillsLanding/withBillsActions.tsx b/src/containers/Purchases/Bills/BillsLanding/withBillsActions.tsx index 8f9b485da..b1dbed59e 100644 --- a/src/containers/Purchases/Bills/BillsLanding/withBillsActions.tsx +++ b/src/containers/Purchases/Bills/BillsLanding/withBillsActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { setBillsTableState, diff --git a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFloatingActions.tsx b/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFloatingActions.tsx index f89788844..db0c3111c 100644 --- a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFloatingActions.tsx +++ b/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteForm.schema.tsx b/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteForm.schema.tsx index d7f440e94..89ec4499f 100644 --- a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteForm.schema.tsx +++ b/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; import { DATATYPES_LENGTH } from '@/constants/dataTypes'; diff --git a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteForm.tsx b/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteForm.tsx index 29635c32e..e7ca64e0c 100644 --- a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteForm.tsx +++ b/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import classNames from 'classnames'; diff --git a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormCurrencyTag.tsx b/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormCurrencyTag.tsx index 806744020..5092dbc6a 100644 --- a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormCurrencyTag.tsx +++ b/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormCurrencyTag.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { BaseCurrency, BaseCurrencyRoot } from '@/components'; import { useVendorCreditNoteFormContext } from './VendorCreditNoteFormProvider'; diff --git a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormDialogs.tsx b/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormDialogs.tsx index b5c30367b..c81f40c2f 100644 --- a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormDialogs.tsx +++ b/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormDialogs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import VendorCreditNumberDialog from '@/containers/Dialogs/VendorCreditNumberDialog'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormFooter.tsx b/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormFooter.tsx index fe6ed9237..cce9d88c5 100644 --- a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormFooter.tsx +++ b/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import styled from 'styled-components'; diff --git a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormFooterLeft.tsx b/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormFooterLeft.tsx index dc6861464..6266d42dd 100644 --- a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormFooterLeft.tsx +++ b/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormFooterLeft.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormFooterRight.tsx b/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormFooterRight.tsx index 7afd54621..7d6faba57 100644 --- a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormFooterRight.tsx +++ b/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormFooterRight.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { diff --git a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormHeader.tsx b/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormHeader.tsx index e0c9ad263..4ae780e45 100644 --- a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormHeader.tsx +++ b/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import classNames from 'classnames'; diff --git a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormHeaderFields.tsx b/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormHeaderFields.tsx index 9eba665bc..e6db12915 100644 --- a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormHeaderFields.tsx +++ b/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormHeaderFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import classNames from 'classnames'; diff --git a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormPage.tsx b/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormPage.tsx index 5057e400c..6304a2132 100644 --- a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormPage.tsx +++ b/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormPage.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useParams } from 'react-router-dom'; diff --git a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormProvider.tsx b/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormProvider.tsx index ac3e8b414..b9ec6d5d5 100644 --- a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormProvider.tsx +++ b/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useLocation } from 'react-router-dom'; import { isEmpty, pick } from 'lodash'; diff --git a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormTopBar.tsx b/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormTopBar.tsx index 7cc82119b..ce3195301 100644 --- a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormTopBar.tsx +++ b/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormTopBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { diff --git a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteItemsEntriesEditor.tsx b/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteItemsEntriesEditor.tsx index fed83bb83..61db5ca9f 100644 --- a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteItemsEntriesEditor.tsx +++ b/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteItemsEntriesEditor.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import { FastField } from 'formik'; diff --git a/src/containers/Purchases/CreditNotes/CreditNoteForm/components.tsx b/src/containers/Purchases/CreditNotes/CreditNoteForm/components.tsx index 7e28fa731..7bd1533b8 100644 --- a/src/containers/Purchases/CreditNotes/CreditNoteForm/components.tsx +++ b/src/containers/Purchases/CreditNotes/CreditNoteForm/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; import { ExchangeRateInputGroup } from '@/components'; diff --git a/src/containers/Purchases/CreditNotes/CreditNoteForm/utils.tsx b/src/containers/Purchases/CreditNotes/CreditNoteForm/utils.tsx index d3bfde878..094f7bb55 100644 --- a/src/containers/Purchases/CreditNotes/CreditNoteForm/utils.tsx +++ b/src/containers/Purchases/CreditNotes/CreditNoteForm/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as R from 'ramda'; import moment from 'moment'; diff --git a/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteActionsBar.tsx b/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteActionsBar.tsx index 18b121d6f..a8f8f183e 100644 --- a/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteActionsBar.tsx +++ b/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; import { diff --git a/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteDataTable.tsx b/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteDataTable.tsx index d4d792ffe..5a4a8a6b2 100644 --- a/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteDataTable.tsx +++ b/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteDataTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteEmptyStatus.tsx b/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteEmptyStatus.tsx index d80bcae3e..333834e2f 100644 --- a/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteEmptyStatus.tsx +++ b/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteEmptyStatus.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, Intent } from '@blueprintjs/core'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteListProvider.tsx b/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteListProvider.tsx index 8bbad2f60..f015e5ab8 100644 --- a/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteListProvider.tsx +++ b/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteListProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { isEmpty } from 'lodash'; diff --git a/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteViewTabs.tsx b/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteViewTabs.tsx index 49fcf8c83..782976c37 100644 --- a/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteViewTabs.tsx +++ b/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteViewTabs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Alignment, Navbar, NavbarGroup } from '@blueprintjs/core'; diff --git a/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNotesList.tsx b/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNotesList.tsx index 2c7b16a2c..02f3345b5 100644 --- a/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNotesList.tsx +++ b/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNotesList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import '@/style/pages/VendorsCreditNote/List.scss'; diff --git a/src/containers/Purchases/CreditNotes/CreditNotesLanding/components.tsx b/src/containers/Purchases/CreditNotes/CreditNotesLanding/components.tsx index b850d1991..800f2ef8a 100644 --- a/src/containers/Purchases/CreditNotes/CreditNotesLanding/components.tsx +++ b/src/containers/Purchases/CreditNotes/CreditNotesLanding/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import clsx from 'classnames'; diff --git a/src/containers/Purchases/CreditNotes/CreditNotesLanding/utils.tsx b/src/containers/Purchases/CreditNotes/CreditNotesLanding/utils.tsx index 8c19bc7c1..6698c9c52 100644 --- a/src/containers/Purchases/CreditNotes/CreditNotesLanding/utils.tsx +++ b/src/containers/Purchases/CreditNotes/CreditNotesLanding/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; import { Intent } from '@blueprintjs/core'; import { AppToaster } from '@/components'; diff --git a/src/containers/Purchases/CreditNotes/CreditNotesLanding/withVendorActions.tsx b/src/containers/Purchases/CreditNotes/CreditNotesLanding/withVendorActions.tsx index 018ad8421..a5ad624ff 100644 --- a/src/containers/Purchases/CreditNotes/CreditNotesLanding/withVendorActions.tsx +++ b/src/containers/Purchases/CreditNotes/CreditNotesLanding/withVendorActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { setVendorCreditTableState, diff --git a/src/containers/Purchases/CreditNotes/CreditNotesLanding/withVendorsCreditNotes.tsx b/src/containers/Purchases/CreditNotes/CreditNotesLanding/withVendorsCreditNotes.tsx index 3cf3c90e9..3d0430ffb 100644 --- a/src/containers/Purchases/CreditNotes/CreditNotesLanding/withVendorsCreditNotes.tsx +++ b/src/containers/Purchases/CreditNotes/CreditNotesLanding/withVendorsCreditNotes.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getVendorCreditTableStateFactory, diff --git a/src/containers/Purchases/CreditNotes/CreditNotesLanding/withVendorsCreditNotesActions.tsx b/src/containers/Purchases/CreditNotes/CreditNotesLanding/withVendorsCreditNotesActions.tsx index 0ca90ce9b..c53ff33b0 100644 --- a/src/containers/Purchases/CreditNotes/CreditNotesLanding/withVendorsCreditNotesActions.tsx +++ b/src/containers/Purchases/CreditNotes/CreditNotesLanding/withVendorsCreditNotesActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { setVendorCreditTableState, diff --git a/src/containers/Purchases/CreditNotes/VendorCreditIUniversalSearchBind.tsx b/src/containers/Purchases/CreditNotes/VendorCreditIUniversalSearchBind.tsx index d61fcb4f7..f87f4182b 100644 --- a/src/containers/Purchases/CreditNotes/VendorCreditIUniversalSearchBind.tsx +++ b/src/containers/Purchases/CreditNotes/VendorCreditIUniversalSearchBind.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { MenuItem, Intent } from '@blueprintjs/core'; diff --git a/src/containers/Purchases/CreditNotes/VendorCreditNotesAlerts.tsx b/src/containers/Purchases/CreditNotes/VendorCreditNotesAlerts.tsx index e3326ee96..d5ebabcd3 100644 --- a/src/containers/Purchases/CreditNotes/VendorCreditNotesAlerts.tsx +++ b/src/containers/Purchases/CreditNotes/VendorCreditNotesAlerts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; const VendorCreditDeleteAlert = React.lazy( diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeEntriesTable.tsx b/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeEntriesTable.tsx index 0ba87ff16..89f2c786c 100644 --- a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeEntriesTable.tsx +++ b/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeEntriesTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import classNames from 'classnames'; import { diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFloatingActions.tsx b/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFloatingActions.tsx index 30b757a24..cefc67779 100644 --- a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFloatingActions.tsx +++ b/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import { diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFooter.tsx b/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFooter.tsx index d8a60d846..d42ad288b 100644 --- a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFooter.tsx +++ b/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import styled from 'styled-components'; diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeForm.schema.tsx b/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeForm.schema.tsx index adc416710..212094594 100644 --- a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeForm.schema.tsx +++ b/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; import { DATATYPES_LENGTH } from '@/constants/dataTypes'; diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeForm.tsx b/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeForm.tsx index 0975fed19..b5633718b 100644 --- a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeForm.tsx +++ b/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import intl from 'react-intl-universal'; import classNames from 'classnames'; diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormBody.tsx b/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormBody.tsx index 913cb8eed..d4bb1b704 100644 --- a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormBody.tsx +++ b/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormBody.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import { FastField } from 'formik'; diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormCurrencyTag.tsx b/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormCurrencyTag.tsx index 534f3b3f4..5ebdaa7bd 100644 --- a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormCurrencyTag.tsx +++ b/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormCurrencyTag.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { BaseCurrency, BaseCurrencyRoot } from '@/components'; import { usePaymentMadeFormContext } from './PaymentMadeFormProvider'; diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormFooterLeft.tsx b/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormFooterLeft.tsx index 499951bf1..23b60eecf 100644 --- a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormFooterLeft.tsx +++ b/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormFooterLeft.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormFooterRight.tsx b/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormFooterRight.tsx index d76c0ef0c..640901bd0 100644 --- a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormFooterRight.tsx +++ b/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormFooterRight.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormHeader.tsx b/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormHeader.tsx index ff60e8e7f..7c9fd5c47 100644 --- a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormHeader.tsx +++ b/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import classNames from 'classnames'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormHeaderFields.tsx b/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormHeaderFields.tsx index de680609c..9a41ee2a5 100644 --- a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormHeaderFields.tsx +++ b/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormHeaderFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import styled from 'styled-components'; import classNames from 'classnames'; diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormPage.tsx b/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormPage.tsx index 309f5bea6..00ffcb489 100644 --- a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormPage.tsx +++ b/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormPage.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useParams } from 'react-router-dom'; diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormProvider.tsx b/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormProvider.tsx index a4619bf3d..f5d0c50d3 100644 --- a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormProvider.tsx +++ b/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useContext } from 'react'; import { Features } from '@/constants'; import { useFeatureCan } from '@/hooks/state'; diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormTopBar.tsx b/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormTopBar.tsx index a76a13167..031fd8e60 100644 --- a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormTopBar.tsx +++ b/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormTopBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Alignment, NavbarGroup, Button, Classes } from '@blueprintjs/core'; diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeInnerProvider.tsx b/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeInnerProvider.tsx index c41985f2f..b45843a15 100644 --- a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeInnerProvider.tsx +++ b/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeInnerProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useContext, useEffect } from 'react'; import { useFormikContext } from 'formik'; import { usePaymentMadeNewPageEntries } from '@/hooks/query'; diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/components.tsx b/src/containers/Purchases/PaymentMades/PaymentForm/components.tsx index 2e7a99581..5c6edfeb7 100644 --- a/src/containers/Purchases/PaymentMades/PaymentForm/components.tsx +++ b/src/containers/Purchases/PaymentMades/PaymentForm/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import moment from 'moment'; diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/utils.tsx b/src/containers/Purchases/PaymentMades/PaymentForm/utils.tsx index bb341e07a..972d41724 100644 --- a/src/containers/Purchases/PaymentMades/PaymentForm/utils.tsx +++ b/src/containers/Purchases/PaymentMades/PaymentForm/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import intl from 'react-intl-universal'; diff --git a/src/containers/Purchases/PaymentMades/PaymentMadeUniversalSearch.tsx b/src/containers/Purchases/PaymentMades/PaymentMadeUniversalSearch.tsx index 990c78fdd..f2518a5dc 100644 --- a/src/containers/Purchases/PaymentMades/PaymentMadeUniversalSearch.tsx +++ b/src/containers/Purchases/PaymentMades/PaymentMadeUniversalSearch.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { MenuItem } from '@blueprintjs/core'; diff --git a/src/containers/Purchases/PaymentMades/PaymentMadesAlerts.tsx b/src/containers/Purchases/PaymentMades/PaymentMadesAlerts.tsx index 3822636ee..254480616 100644 --- a/src/containers/Purchases/PaymentMades/PaymentMadesAlerts.tsx +++ b/src/containers/Purchases/PaymentMades/PaymentMadesAlerts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; const PaymentMadeDeleteAlert = React.lazy( diff --git a/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadeActionsBar.tsx b/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadeActionsBar.tsx index 363979207..2162126ef 100644 --- a/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadeActionsBar.tsx +++ b/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadeActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, diff --git a/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadeList.tsx b/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadeList.tsx index 91d7f3a26..f2fa51028 100644 --- a/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadeList.tsx +++ b/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadeList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import '@/style/pages/PaymentMade/List.scss'; diff --git a/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadeViewTabs.tsx b/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadeViewTabs.tsx index 8c1d08255..a5177e982 100644 --- a/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadeViewTabs.tsx +++ b/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadeViewTabs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router'; import { DashboardViewsTabs, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadesEmptyStatus.tsx b/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadesEmptyStatus.tsx index 9d0e08ade..bea353941 100644 --- a/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadesEmptyStatus.tsx +++ b/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadesEmptyStatus.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, Intent } from '@blueprintjs/core'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadesListProvider.tsx b/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadesListProvider.tsx index faae33014..128728dae 100644 --- a/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadesListProvider.tsx +++ b/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadesListProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext } from 'react'; import { isEmpty } from 'lodash'; diff --git a/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadesTable.tsx b/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadesTable.tsx index a2dc879d2..cb44a5ed6 100644 --- a/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadesTable.tsx +++ b/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadesTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadesView.tsx b/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadesView.tsx index 9832d5508..ea35cdeae 100644 --- a/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadesView.tsx +++ b/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadesView.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect } from 'react'; import { Switch, Route } from 'react-router-dom'; diff --git a/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMdesListProvider.tsx b/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMdesListProvider.tsx index ec487378c..a20be10eb 100644 --- a/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMdesListProvider.tsx +++ b/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMdesListProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext } from 'react'; import { DashboardInsider } from '@/components/Dashboard'; import { diff --git a/src/containers/Purchases/PaymentMades/PaymentsLanding/components.tsx b/src/containers/Purchases/PaymentMades/PaymentsLanding/components.tsx index 7879f884e..2305a9e49 100644 --- a/src/containers/Purchases/PaymentMades/PaymentsLanding/components.tsx +++ b/src/containers/Purchases/PaymentMades/PaymentsLanding/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { diff --git a/src/containers/Purchases/PaymentMades/PaymentsLanding/utils.tsx b/src/containers/Purchases/PaymentMades/PaymentsLanding/utils.tsx index c80ead371..238c34b53 100644 --- a/src/containers/Purchases/PaymentMades/PaymentsLanding/utils.tsx +++ b/src/containers/Purchases/PaymentMades/PaymentsLanding/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { pick } from 'lodash'; export const transformPaymentViewsToTabs = (paymentMadeViews) => { diff --git a/src/containers/Purchases/PaymentMades/PaymentsLanding/withPaymentMade.tsx b/src/containers/Purchases/PaymentMades/PaymentsLanding/withPaymentMade.tsx index 062a4ba94..bc3ed37ab 100644 --- a/src/containers/Purchases/PaymentMades/PaymentsLanding/withPaymentMade.tsx +++ b/src/containers/Purchases/PaymentMades/PaymentsLanding/withPaymentMade.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getPaymentMadesTableStateFactory, diff --git a/src/containers/Purchases/PaymentMades/PaymentsLanding/withPaymentMadeActions.tsx b/src/containers/Purchases/PaymentMades/PaymentsLanding/withPaymentMadeActions.tsx index 941af1822..ddc08df03 100644 --- a/src/containers/Purchases/PaymentMades/PaymentsLanding/withPaymentMadeActions.tsx +++ b/src/containers/Purchases/PaymentMades/PaymentsLanding/withPaymentMadeActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { setPaymentMadesTableState, diff --git a/src/containers/Purchases/PaymentMades/PaymentsLanding/withPaymentMadeDetail.tsx b/src/containers/Purchases/PaymentMades/PaymentsLanding/withPaymentMadeDetail.tsx index b8f19f0a0..c5d6abab2 100644 --- a/src/containers/Purchases/PaymentMades/PaymentsLanding/withPaymentMadeDetail.tsx +++ b/src/containers/Purchases/PaymentMades/PaymentsLanding/withPaymentMadeDetail.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getPaymentMadeByIdFactory } from '@/store/PaymentMades/paymentMade.selector'; diff --git a/src/containers/QuickNewDropdown/QuickNewDropdown.tsx b/src/containers/QuickNewDropdown/QuickNewDropdown.tsx index f59dc8eb5..2499aca9e 100644 --- a/src/containers/QuickNewDropdown/QuickNewDropdown.tsx +++ b/src/containers/QuickNewDropdown/QuickNewDropdown.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, MenuItem } from '@blueprintjs/core'; import { FormattedMessage as T } from '@/components'; diff --git a/src/containers/Resources/withResourceDetails.tsx b/src/containers/Resources/withResourceDetails.tsx index ead833ac5..b2ab47a97 100644 --- a/src/containers/Resources/withResourceDetails.tsx +++ b/src/containers/Resources/withResourceDetails.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import {connect} from 'react-redux'; import { getResourceColumns, diff --git a/src/containers/Resources/withResourcesActions.tsx b/src/containers/Resources/withResourcesActions.tsx index 58a2bb9dc..3e28ad682 100644 --- a/src/containers/Resources/withResourcesActions.tsx +++ b/src/containers/Resources/withResourcesActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import {connect} from 'react-redux'; import { fetchResourceColumns, diff --git a/src/containers/Router/withRoute.tsx b/src/containers/Router/withRoute.tsx index a8b71e50b..3e7b7cd59 100644 --- a/src/containers/Router/withRoute.tsx +++ b/src/containers/Router/withRoute.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from "react-redux"; import { withRouter } from "react-router-dom" diff --git a/src/containers/Router/withRouteActions.tsx b/src/containers/Router/withRouteActions.tsx index 8bc63a774..66fd97e67 100644 --- a/src/containers/Router/withRouteActions.tsx +++ b/src/containers/Router/withRouteActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; diff --git a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFloatingActions.tsx b/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFloatingActions.tsx index 255f8bd69..1a837de22 100644 --- a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFloatingActions.tsx +++ b/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteForm.schema.tsx b/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteForm.schema.tsx index 455f5cb4c..71ab8db6a 100644 --- a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteForm.schema.tsx +++ b/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; import { DATATYPES_LENGTH } from '@/constants/dataTypes'; diff --git a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteForm.tsx b/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteForm.tsx index 1cb3fb1aa..bac555c73 100644 --- a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteForm.tsx +++ b/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import classNames from 'classnames'; diff --git a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormDialogs.tsx b/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormDialogs.tsx index f413e2cf7..ea2ca3952 100644 --- a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormDialogs.tsx +++ b/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormDialogs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import CreditNoteNumberDialog from '@/containers/Dialogs/CreditNoteNumberDialog'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormFooter.tsx b/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormFooter.tsx index b05a2788b..5c0a62ddc 100644 --- a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormFooter.tsx +++ b/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import styled from 'styled-components'; diff --git a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormFooterLeft.tsx b/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormFooterLeft.tsx index b117ea964..32735f836 100644 --- a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormFooterLeft.tsx +++ b/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormFooterLeft.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormFooterRight.tsx b/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormFooterRight.tsx index b552a080a..7aa4a9fea 100644 --- a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormFooterRight.tsx +++ b/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormFooterRight.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { diff --git a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormHeader.tsx b/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormHeader.tsx index 9ce21a945..7ea1805f3 100644 --- a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormHeader.tsx +++ b/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import classNames from 'classnames'; diff --git a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormHeaderFields.tsx b/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormHeaderFields.tsx index cc3665a96..3e61a3b5c 100644 --- a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormHeaderFields.tsx +++ b/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormHeaderFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import styled from 'styled-components'; diff --git a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormPage.tsx b/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormPage.tsx index 8bb9da650..bb4c7a2cd 100644 --- a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormPage.tsx +++ b/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormPage.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useParams } from 'react-router-dom'; diff --git a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormProvider.tsx b/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormProvider.tsx index 9b861438b..3e4d95261 100644 --- a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormProvider.tsx +++ b/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useLocation } from 'react-router-dom'; import { isEmpty, pick } from 'lodash'; diff --git a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormTopBar.tsx b/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormTopBar.tsx index ebfe73ffb..5c45e44dd 100644 --- a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormTopBar.tsx +++ b/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormTopBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { diff --git a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteItemsEntriesEditorField.tsx b/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteItemsEntriesEditorField.tsx index 57cea8090..60f2bd15e 100644 --- a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteItemsEntriesEditorField.tsx +++ b/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteItemsEntriesEditorField.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import { FastField } from 'formik'; diff --git a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNotetFormCurrencyTag.tsx b/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNotetFormCurrencyTag.tsx index 37b6af35d..ac35f1c81 100644 --- a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNotetFormCurrencyTag.tsx +++ b/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNotetFormCurrencyTag.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { BaseCurrency, BaseCurrencyRoot } from '@/components'; import { useCreditNoteFormContext } from './CreditNoteFormProvider'; diff --git a/src/containers/Sales/CreditNotes/CreditNoteForm/components.tsx b/src/containers/Sales/CreditNotes/CreditNoteForm/components.tsx index 560d29ce0..44a82782f 100644 --- a/src/containers/Sales/CreditNotes/CreditNoteForm/components.tsx +++ b/src/containers/Sales/CreditNotes/CreditNoteForm/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; import { ExchangeRateInputGroup } from '@/components'; diff --git a/src/containers/Sales/CreditNotes/CreditNoteForm/utils.tsx b/src/containers/Sales/CreditNotes/CreditNoteForm/utils.tsx index 71c1a05fe..01c9e2cdf 100644 --- a/src/containers/Sales/CreditNotes/CreditNoteForm/utils.tsx +++ b/src/containers/Sales/CreditNotes/CreditNoteForm/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import * as R from 'ramda'; diff --git a/src/containers/Sales/CreditNotes/CreditNoteUniversalSearch.tsx b/src/containers/Sales/CreditNotes/CreditNoteUniversalSearch.tsx index 205beb153..495af470d 100644 --- a/src/containers/Sales/CreditNotes/CreditNoteUniversalSearch.tsx +++ b/src/containers/Sales/CreditNotes/CreditNoteUniversalSearch.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { MenuItem, Intent } from '@blueprintjs/core'; diff --git a/src/containers/Sales/CreditNotes/CreditNotesAlerts.tsx b/src/containers/Sales/CreditNotes/CreditNotesAlerts.tsx index 5cd6682b7..01c20a7c6 100644 --- a/src/containers/Sales/CreditNotes/CreditNotesAlerts.tsx +++ b/src/containers/Sales/CreditNotes/CreditNotesAlerts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; const CreditNoteDeleteAlert = React.lazy( diff --git a/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesActionsBar.tsx b/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesActionsBar.tsx index 023543c8e..0604cec3f 100644 --- a/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesActionsBar.tsx +++ b/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, diff --git a/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesDataTable.tsx b/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesDataTable.tsx index 65b6d6b53..579a88d59 100644 --- a/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesDataTable.tsx +++ b/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesDataTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesEmptyStatus.tsx b/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesEmptyStatus.tsx index 643a9975d..79964f495 100644 --- a/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesEmptyStatus.tsx +++ b/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesEmptyStatus.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, Intent } from '@blueprintjs/core'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesList.tsx b/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesList.tsx index 2f37b0b60..13873aacc 100644 --- a/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesList.tsx +++ b/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import '@/style/pages/CreditNote/List.scss'; diff --git a/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesListProvider.tsx b/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesListProvider.tsx index 880eceab1..bef956557 100644 --- a/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesListProvider.tsx +++ b/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesListProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { isEmpty } from 'lodash'; diff --git a/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesViewTabs.tsx b/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesViewTabs.tsx index 9e97d60ef..3c7cab396 100644 --- a/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesViewTabs.tsx +++ b/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesViewTabs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Alignment, Navbar, NavbarGroup } from '@blueprintjs/core'; diff --git a/src/containers/Sales/CreditNotes/CreditNotesLanding/components.tsx b/src/containers/Sales/CreditNotes/CreditNotesLanding/components.tsx index d1e155df8..be9436ca1 100644 --- a/src/containers/Sales/CreditNotes/CreditNotesLanding/components.tsx +++ b/src/containers/Sales/CreditNotes/CreditNotesLanding/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import clsx from 'classnames'; diff --git a/src/containers/Sales/CreditNotes/CreditNotesLanding/utils.tsx b/src/containers/Sales/CreditNotes/CreditNotesLanding/utils.tsx index d1cd55df6..314fe2f24 100644 --- a/src/containers/Sales/CreditNotes/CreditNotesLanding/utils.tsx +++ b/src/containers/Sales/CreditNotes/CreditNotesLanding/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent } from '@blueprintjs/core'; diff --git a/src/containers/Sales/CreditNotes/CreditNotesLanding/withCreditNotes.tsx b/src/containers/Sales/CreditNotes/CreditNotesLanding/withCreditNotes.tsx index 6502d6124..1fa531466 100644 --- a/src/containers/Sales/CreditNotes/CreditNotesLanding/withCreditNotes.tsx +++ b/src/containers/Sales/CreditNotes/CreditNotesLanding/withCreditNotes.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getCreditNotesTableStateFactory, diff --git a/src/containers/Sales/CreditNotes/CreditNotesLanding/withCreditNotesActions.tsx b/src/containers/Sales/CreditNotes/CreditNotesLanding/withCreditNotesActions.tsx index bb8d595d5..264f1466f 100644 --- a/src/containers/Sales/CreditNotes/CreditNotesLanding/withCreditNotesActions.tsx +++ b/src/containers/Sales/CreditNotes/CreditNotesLanding/withCreditNotesActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { setCreditNoteTableState, diff --git a/src/containers/Sales/Estimates/EstimateForm/EstimateFloatingActions.tsx b/src/containers/Sales/Estimates/EstimateForm/EstimateFloatingActions.tsx index 232401a9b..df212c38c 100644 --- a/src/containers/Sales/Estimates/EstimateForm/EstimateFloatingActions.tsx +++ b/src/containers/Sales/Estimates/EstimateForm/EstimateFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import { diff --git a/src/containers/Sales/Estimates/EstimateForm/EstimateForm.schema.tsx b/src/containers/Sales/Estimates/EstimateForm/EstimateForm.schema.tsx index 6d38b6ed5..68ecc4a86 100644 --- a/src/containers/Sales/Estimates/EstimateForm/EstimateForm.schema.tsx +++ b/src/containers/Sales/Estimates/EstimateForm/EstimateForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; import moment from 'moment'; diff --git a/src/containers/Sales/Estimates/EstimateForm/EstimateForm.tsx b/src/containers/Sales/Estimates/EstimateForm/EstimateForm.tsx index 1c187af1f..ff439b911 100644 --- a/src/containers/Sales/Estimates/EstimateForm/EstimateForm.tsx +++ b/src/containers/Sales/Estimates/EstimateForm/EstimateForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import intl from 'react-intl-universal'; import classNames from 'classnames'; diff --git a/src/containers/Sales/Estimates/EstimateForm/EstimateFormCurrencyTag.tsx b/src/containers/Sales/Estimates/EstimateForm/EstimateFormCurrencyTag.tsx index 3f18a3edc..c272fbebe 100644 --- a/src/containers/Sales/Estimates/EstimateForm/EstimateFormCurrencyTag.tsx +++ b/src/containers/Sales/Estimates/EstimateForm/EstimateFormCurrencyTag.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { BaseCurrency, BaseCurrencyRoot } from '@/components'; import { useEstimateFormContext } from './EstimateFormProvider'; diff --git a/src/containers/Sales/Estimates/EstimateForm/EstimateFormDialogs.tsx b/src/containers/Sales/Estimates/EstimateForm/EstimateFormDialogs.tsx index 9b9a09eac..b9f187896 100644 --- a/src/containers/Sales/Estimates/EstimateForm/EstimateFormDialogs.tsx +++ b/src/containers/Sales/Estimates/EstimateForm/EstimateFormDialogs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; import EstimateNumberDialog from '@/containers/Dialogs/EstimateNumberDialog'; diff --git a/src/containers/Sales/Estimates/EstimateForm/EstimateFormFooter.tsx b/src/containers/Sales/Estimates/EstimateForm/EstimateFormFooter.tsx index 2340c0b6f..13d269299 100644 --- a/src/containers/Sales/Estimates/EstimateForm/EstimateFormFooter.tsx +++ b/src/containers/Sales/Estimates/EstimateForm/EstimateFormFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import styled from 'styled-components'; diff --git a/src/containers/Sales/Estimates/EstimateForm/EstimateFormFooterLeft.tsx b/src/containers/Sales/Estimates/EstimateForm/EstimateFormFooterLeft.tsx index ae374a971..0c6267117 100644 --- a/src/containers/Sales/Estimates/EstimateForm/EstimateFormFooterLeft.tsx +++ b/src/containers/Sales/Estimates/EstimateForm/EstimateFormFooterLeft.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Sales/Estimates/EstimateForm/EstimateFormFooterRight.tsx b/src/containers/Sales/Estimates/EstimateForm/EstimateFormFooterRight.tsx index 2450be067..93135fdd2 100644 --- a/src/containers/Sales/Estimates/EstimateForm/EstimateFormFooterRight.tsx +++ b/src/containers/Sales/Estimates/EstimateForm/EstimateFormFooterRight.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { diff --git a/src/containers/Sales/Estimates/EstimateForm/EstimateFormHeader.tsx b/src/containers/Sales/Estimates/EstimateForm/EstimateFormHeader.tsx index dd2634401..b5f4d2164 100644 --- a/src/containers/Sales/Estimates/EstimateForm/EstimateFormHeader.tsx +++ b/src/containers/Sales/Estimates/EstimateForm/EstimateFormHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import intl from 'react-intl-universal'; import classNames from 'classnames'; diff --git a/src/containers/Sales/Estimates/EstimateForm/EstimateFormHeaderFields.tsx b/src/containers/Sales/Estimates/EstimateForm/EstimateFormHeaderFields.tsx index f0f1ecf0c..f07ece73f 100644 --- a/src/containers/Sales/Estimates/EstimateForm/EstimateFormHeaderFields.tsx +++ b/src/containers/Sales/Estimates/EstimateForm/EstimateFormHeaderFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import classNames from 'classnames'; diff --git a/src/containers/Sales/Estimates/EstimateForm/EstimateFormPage.tsx b/src/containers/Sales/Estimates/EstimateForm/EstimateFormPage.tsx index f0c50f577..6f02669db 100644 --- a/src/containers/Sales/Estimates/EstimateForm/EstimateFormPage.tsx +++ b/src/containers/Sales/Estimates/EstimateForm/EstimateFormPage.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useParams } from 'react-router-dom'; diff --git a/src/containers/Sales/Estimates/EstimateForm/EstimateFormProvider.tsx b/src/containers/Sales/Estimates/EstimateForm/EstimateFormProvider.tsx index 130f34002..9af9eeae9 100644 --- a/src/containers/Sales/Estimates/EstimateForm/EstimateFormProvider.tsx +++ b/src/containers/Sales/Estimates/EstimateForm/EstimateFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useContext } from 'react'; import { DashboardInsider } from '@/components/Dashboard'; diff --git a/src/containers/Sales/Estimates/EstimateForm/EstimateItemsEntriesField.tsx b/src/containers/Sales/Estimates/EstimateForm/EstimateItemsEntriesField.tsx index ac0dceb3a..8f612a970 100644 --- a/src/containers/Sales/Estimates/EstimateForm/EstimateItemsEntriesField.tsx +++ b/src/containers/Sales/Estimates/EstimateForm/EstimateItemsEntriesField.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import { FastField } from 'formik'; diff --git a/src/containers/Sales/Estimates/EstimateForm/EstimtaeFormTopBar.tsx b/src/containers/Sales/Estimates/EstimateForm/EstimtaeFormTopBar.tsx index cd24a161e..cd8ccd3d0 100644 --- a/src/containers/Sales/Estimates/EstimateForm/EstimtaeFormTopBar.tsx +++ b/src/containers/Sales/Estimates/EstimateForm/EstimtaeFormTopBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { diff --git a/src/containers/Sales/Estimates/EstimateForm/components.tsx b/src/containers/Sales/Estimates/EstimateForm/components.tsx index 34df705d3..aacee47f6 100644 --- a/src/containers/Sales/Estimates/EstimateForm/components.tsx +++ b/src/containers/Sales/Estimates/EstimateForm/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Button } from '@blueprintjs/core'; diff --git a/src/containers/Sales/Estimates/EstimateForm/utils.tsx b/src/containers/Sales/Estimates/EstimateForm/utils.tsx index 558d72f54..ec5ee38e4 100644 --- a/src/containers/Sales/Estimates/EstimateForm/utils.tsx +++ b/src/containers/Sales/Estimates/EstimateForm/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as R from 'ramda'; import intl from 'react-intl-universal'; diff --git a/src/containers/Sales/Estimates/EstimatesAlerts.tsx b/src/containers/Sales/Estimates/EstimatesAlerts.tsx index ef6490be3..d5931793c 100644 --- a/src/containers/Sales/Estimates/EstimatesAlerts.tsx +++ b/src/containers/Sales/Estimates/EstimatesAlerts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; const EstimateDeleteAlert = React.lazy( diff --git a/src/containers/Sales/Estimates/EstimatesLanding/EstimateUniversalSearch.tsx b/src/containers/Sales/Estimates/EstimatesLanding/EstimateUniversalSearch.tsx index aab122ddf..bbde97ce1 100644 --- a/src/containers/Sales/Estimates/EstimatesLanding/EstimateUniversalSearch.tsx +++ b/src/containers/Sales/Estimates/EstimatesLanding/EstimateUniversalSearch.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { MenuItem } from '@blueprintjs/core'; diff --git a/src/containers/Sales/Estimates/EstimatesLanding/EstimatesActionsBar.tsx b/src/containers/Sales/Estimates/EstimatesLanding/EstimatesActionsBar.tsx index de9ee7d6e..122cf424d 100644 --- a/src/containers/Sales/Estimates/EstimatesLanding/EstimatesActionsBar.tsx +++ b/src/containers/Sales/Estimates/EstimatesLanding/EstimatesActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, diff --git a/src/containers/Sales/Estimates/EstimatesLanding/EstimatesDataTable.tsx b/src/containers/Sales/Estimates/EstimatesLanding/EstimatesDataTable.tsx index af661ddb7..0a8972c18 100644 --- a/src/containers/Sales/Estimates/EstimatesLanding/EstimatesDataTable.tsx +++ b/src/containers/Sales/Estimates/EstimatesLanding/EstimatesDataTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Sales/Estimates/EstimatesLanding/EstimatesEmptyStatus.tsx b/src/containers/Sales/Estimates/EstimatesLanding/EstimatesEmptyStatus.tsx index 089400e2d..d53934a7a 100644 --- a/src/containers/Sales/Estimates/EstimatesLanding/EstimatesEmptyStatus.tsx +++ b/src/containers/Sales/Estimates/EstimatesLanding/EstimatesEmptyStatus.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, Intent } from '@blueprintjs/core'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Sales/Estimates/EstimatesLanding/EstimatesList.tsx b/src/containers/Sales/Estimates/EstimatesLanding/EstimatesList.tsx index af5a01184..39c33cfc4 100644 --- a/src/containers/Sales/Estimates/EstimatesLanding/EstimatesList.tsx +++ b/src/containers/Sales/Estimates/EstimatesLanding/EstimatesList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DashboardContentTable, DashboardPageContent } from '@/components'; diff --git a/src/containers/Sales/Estimates/EstimatesLanding/EstimatesListProvider.tsx b/src/containers/Sales/Estimates/EstimatesLanding/EstimatesListProvider.tsx index 9ccec3e5b..966fef884 100644 --- a/src/containers/Sales/Estimates/EstimatesLanding/EstimatesListProvider.tsx +++ b/src/containers/Sales/Estimates/EstimatesLanding/EstimatesListProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext } from 'react'; import { isEmpty } from 'lodash'; diff --git a/src/containers/Sales/Estimates/EstimatesLanding/EstimatesViewTabs.tsx b/src/containers/Sales/Estimates/EstimatesLanding/EstimatesViewTabs.tsx index a3d01d8d4..286756bd7 100644 --- a/src/containers/Sales/Estimates/EstimatesLanding/EstimatesViewTabs.tsx +++ b/src/containers/Sales/Estimates/EstimatesLanding/EstimatesViewTabs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Alignment, Navbar, NavbarGroup } from '@blueprintjs/core'; diff --git a/src/containers/Sales/Estimates/EstimatesLanding/components.tsx b/src/containers/Sales/Estimates/EstimatesLanding/components.tsx index df4c65a77..a596a419a 100644 --- a/src/containers/Sales/Estimates/EstimatesLanding/components.tsx +++ b/src/containers/Sales/Estimates/EstimatesLanding/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, Tag, Menu, MenuItem, MenuDivider } from '@blueprintjs/core'; import intl from 'react-intl-universal'; diff --git a/src/containers/Sales/Estimates/EstimatesLanding/withEstimates.tsx b/src/containers/Sales/Estimates/EstimatesLanding/withEstimates.tsx index c8dc4cb4c..f43f96e54 100644 --- a/src/containers/Sales/Estimates/EstimatesLanding/withEstimates.tsx +++ b/src/containers/Sales/Estimates/EstimatesLanding/withEstimates.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getEstimatesTableStateFactory, diff --git a/src/containers/Sales/Estimates/EstimatesLanding/withEstimatesActions.tsx b/src/containers/Sales/Estimates/EstimatesLanding/withEstimatesActions.tsx index ccef6b5b0..3054a7a26 100644 --- a/src/containers/Sales/Estimates/EstimatesLanding/withEstimatesActions.tsx +++ b/src/containers/Sales/Estimates/EstimatesLanding/withEstimatesActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { setEstimatesTableState, diff --git a/src/containers/Sales/Estimates/withEstimateDetail.tsx b/src/containers/Sales/Estimates/withEstimateDetail.tsx index 8bac6645d..06c27e5cb 100644 --- a/src/containers/Sales/Estimates/withEstimateDetail.tsx +++ b/src/containers/Sales/Estimates/withEstimateDetail.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getEstimateByIdFactory } from '@/store/Estimate/estimates.selectors'; diff --git a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFloatingActions.tsx b/src/containers/Sales/Invoices/InvoiceForm/InvoiceFloatingActions.tsx index 3f220d37c..3de699979 100644 --- a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFloatingActions.tsx +++ b/src/containers/Sales/Invoices/InvoiceForm/InvoiceFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, diff --git a/src/containers/Sales/Invoices/InvoiceForm/InvoiceForm.schema.tsx b/src/containers/Sales/Invoices/InvoiceForm/InvoiceForm.schema.tsx index 73de6389b..510a6e439 100644 --- a/src/containers/Sales/Invoices/InvoiceForm/InvoiceForm.schema.tsx +++ b/src/containers/Sales/Invoices/InvoiceForm/InvoiceForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import moment from 'moment'; import intl from 'react-intl-universal'; diff --git a/src/containers/Sales/Invoices/InvoiceForm/InvoiceForm.tsx b/src/containers/Sales/Invoices/InvoiceForm/InvoiceForm.tsx index 2b8c75dab..e8de6e4a7 100644 --- a/src/containers/Sales/Invoices/InvoiceForm/InvoiceForm.tsx +++ b/src/containers/Sales/Invoices/InvoiceForm/InvoiceForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import intl from 'react-intl-universal'; import classNames from 'classnames'; diff --git a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormCurrencyTag.tsx b/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormCurrencyTag.tsx index 97513e88c..61d1a1fae 100644 --- a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormCurrencyTag.tsx +++ b/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormCurrencyTag.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormDialogs.tsx b/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormDialogs.tsx index cb14823b5..54319f0d7 100644 --- a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormDialogs.tsx +++ b/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormDialogs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import InvoiceNumberDialog from '@/containers/Dialogs/InvoiceNumberDialog'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormFooter.tsx b/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormFooter.tsx index 6de162c8d..7f2d0d6f1 100644 --- a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormFooter.tsx +++ b/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import styled from 'styled-components'; diff --git a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormFooterLeft.tsx b/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormFooterLeft.tsx index ddd1a0272..982de7a7e 100644 --- a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormFooterLeft.tsx +++ b/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormFooterLeft.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormFooterRight.tsx b/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormFooterRight.tsx index a8a381164..4a9c6cfe4 100644 --- a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormFooterRight.tsx +++ b/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormFooterRight.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormHeader.tsx b/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormHeader.tsx index 3fc279b2b..f9927c53e 100644 --- a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormHeader.tsx +++ b/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import classNames from 'classnames'; diff --git a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormHeaderFields.tsx b/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormHeaderFields.tsx index 22ecc0ae6..e49fed38b 100644 --- a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormHeaderFields.tsx +++ b/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormHeaderFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import classNames from 'classnames'; diff --git a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormPage.tsx b/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormPage.tsx index fc2edc8f8..eba22308e 100644 --- a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormPage.tsx +++ b/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormPage.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useParams } from 'react-router-dom'; diff --git a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormProvider.tsx b/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormProvider.tsx index 0d3adb2e9..7b8c10fdd 100644 --- a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormProvider.tsx +++ b/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useState } from 'react'; import { isEmpty, pick } from 'lodash'; import { useLocation } from 'react-router-dom'; diff --git a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormTopBar.tsx b/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormTopBar.tsx index 85466e802..064cacc9a 100644 --- a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormTopBar.tsx +++ b/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormTopBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Sales/Invoices/InvoiceForm/InvoiceItemsEntriesEditorField.tsx b/src/containers/Sales/Invoices/InvoiceForm/InvoiceItemsEntriesEditorField.tsx index 560980c71..866664d49 100644 --- a/src/containers/Sales/Invoices/InvoiceForm/InvoiceItemsEntriesEditorField.tsx +++ b/src/containers/Sales/Invoices/InvoiceForm/InvoiceItemsEntriesEditorField.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import { FastField } from 'formik'; diff --git a/src/containers/Sales/Invoices/InvoiceForm/components.tsx b/src/containers/Sales/Invoices/InvoiceForm/components.tsx index e560660cb..b69032b71 100644 --- a/src/containers/Sales/Invoices/InvoiceForm/components.tsx +++ b/src/containers/Sales/Invoices/InvoiceForm/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Button } from '@blueprintjs/core'; diff --git a/src/containers/Sales/Invoices/InvoiceForm/utils.tsx b/src/containers/Sales/Invoices/InvoiceForm/utils.tsx index da622695e..b081e3b19 100644 --- a/src/containers/Sales/Invoices/InvoiceForm/utils.tsx +++ b/src/containers/Sales/Invoices/InvoiceForm/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import moment from 'moment'; diff --git a/src/containers/Sales/Invoices/InvoiceUniversalSearch.tsx b/src/containers/Sales/Invoices/InvoiceUniversalSearch.tsx index 53ab648b1..67326ba05 100644 --- a/src/containers/Sales/Invoices/InvoiceUniversalSearch.tsx +++ b/src/containers/Sales/Invoices/InvoiceUniversalSearch.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { MenuItem } from '@blueprintjs/core'; diff --git a/src/containers/Sales/Invoices/InvoicesAlerts.tsx b/src/containers/Sales/Invoices/InvoicesAlerts.tsx index d181f643f..d337f0222 100644 --- a/src/containers/Sales/Invoices/InvoicesAlerts.tsx +++ b/src/containers/Sales/Invoices/InvoicesAlerts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; const InvoiceDeleteAlert = React.lazy( diff --git a/src/containers/Sales/Invoices/InvoicesLanding/InvoiceViewTabs.tsx b/src/containers/Sales/Invoices/InvoicesLanding/InvoiceViewTabs.tsx index 5beac4c48..2d70160db 100644 --- a/src/containers/Sales/Invoices/InvoicesLanding/InvoiceViewTabs.tsx +++ b/src/containers/Sales/Invoices/InvoicesLanding/InvoiceViewTabs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router'; import { Alignment, Navbar, NavbarGroup } from '@blueprintjs/core'; diff --git a/src/containers/Sales/Invoices/InvoicesLanding/InvoicesActionsBar.tsx b/src/containers/Sales/Invoices/InvoicesLanding/InvoicesActionsBar.tsx index 538e1edb5..83e27b812 100644 --- a/src/containers/Sales/Invoices/InvoicesLanding/InvoicesActionsBar.tsx +++ b/src/containers/Sales/Invoices/InvoicesLanding/InvoicesActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, diff --git a/src/containers/Sales/Invoices/InvoicesLanding/InvoicesDataTable.tsx b/src/containers/Sales/Invoices/InvoicesLanding/InvoicesDataTable.tsx index 55d8652a0..1c3adc4df 100644 --- a/src/containers/Sales/Invoices/InvoicesLanding/InvoicesDataTable.tsx +++ b/src/containers/Sales/Invoices/InvoicesLanding/InvoicesDataTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Sales/Invoices/InvoicesLanding/InvoicesEmptyStatus.tsx b/src/containers/Sales/Invoices/InvoicesLanding/InvoicesEmptyStatus.tsx index e94d4eb8f..ba359c4e2 100644 --- a/src/containers/Sales/Invoices/InvoicesLanding/InvoicesEmptyStatus.tsx +++ b/src/containers/Sales/Invoices/InvoicesLanding/InvoicesEmptyStatus.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, Intent } from '@blueprintjs/core'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Sales/Invoices/InvoicesLanding/InvoicesList.tsx b/src/containers/Sales/Invoices/InvoicesLanding/InvoicesList.tsx index 454ea7e77..dc4577d0d 100644 --- a/src/containers/Sales/Invoices/InvoicesLanding/InvoicesList.tsx +++ b/src/containers/Sales/Invoices/InvoicesLanding/InvoicesList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import '@/style/pages/SaleInvoice/List.scss'; diff --git a/src/containers/Sales/Invoices/InvoicesLanding/InvoicesListProvider.tsx b/src/containers/Sales/Invoices/InvoicesLanding/InvoicesListProvider.tsx index 3a635215f..950f1f62b 100644 --- a/src/containers/Sales/Invoices/InvoicesLanding/InvoicesListProvider.tsx +++ b/src/containers/Sales/Invoices/InvoicesLanding/InvoicesListProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext } from 'react'; import { isEmpty } from 'lodash'; diff --git a/src/containers/Sales/Invoices/InvoicesLanding/components.tsx b/src/containers/Sales/Invoices/InvoicesLanding/components.tsx index e2513a329..efbb62239 100644 --- a/src/containers/Sales/Invoices/InvoicesLanding/components.tsx +++ b/src/containers/Sales/Invoices/InvoicesLanding/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, diff --git a/src/containers/Sales/Invoices/InvoicesLanding/withInvoiceActions.tsx b/src/containers/Sales/Invoices/InvoicesLanding/withInvoiceActions.tsx index e813a543a..a9fca5d17 100644 --- a/src/containers/Sales/Invoices/InvoicesLanding/withInvoiceActions.tsx +++ b/src/containers/Sales/Invoices/InvoicesLanding/withInvoiceActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { setInvoicesTableState, diff --git a/src/containers/Sales/Invoices/InvoicesLanding/withInvoices.tsx b/src/containers/Sales/Invoices/InvoicesLanding/withInvoices.tsx index 7303409e2..afadbfef7 100644 --- a/src/containers/Sales/Invoices/InvoicesLanding/withInvoices.tsx +++ b/src/containers/Sales/Invoices/InvoicesLanding/withInvoices.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getInvoicesTableStateFactory, diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveAlerts.tsx b/src/containers/Sales/PaymentReceives/PaymentReceiveAlerts.tsx index ea4b17a02..111efcdfc 100644 --- a/src/containers/Sales/PaymentReceives/PaymentReceiveAlerts.tsx +++ b/src/containers/Sales/PaymentReceives/PaymentReceiveAlerts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; const PaymentReceiveDeleteAlert = React.lazy( diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFloatingActions.tsx b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFloatingActions.tsx index 978883b8e..435b6ce13 100644 --- a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFloatingActions.tsx +++ b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import { diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveForm.schema.tsx b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveForm.schema.tsx index 565fd010c..b65558d65 100644 --- a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveForm.schema.tsx +++ b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; import { DATATYPES_LENGTH } from '@/constants/dataTypes'; diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveForm.tsx b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveForm.tsx index ebbbe9766..929f38705 100644 --- a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveForm.tsx +++ b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import intl from 'react-intl-universal'; import classNames from 'classnames'; diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormAlerts.tsx b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormAlerts.tsx index 3498d9390..7aa842726 100644 --- a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormAlerts.tsx +++ b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormAlerts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; import ClearingAllLinesAlert from '@/containers/Alerts/PaymentReceives/ClearingAllLinesAlert'; diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormBody.tsx b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormBody.tsx index 94cd09a90..366889e2e 100644 --- a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormBody.tsx +++ b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormBody.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FastField } from 'formik'; import PaymentReceiveItemsTable from './PaymentReceiveItemsTable'; diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormCurrencyTag.tsx b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormCurrencyTag.tsx index 143a71871..21eb6e244 100644 --- a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormCurrencyTag.tsx +++ b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormCurrencyTag.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { BaseCurrency, BaseCurrencyRoot } from '@/components'; import { usePaymentReceiveFormContext } from './PaymentReceiveFormProvider'; diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormDialogs.tsx b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormDialogs.tsx index aeae40ae2..842a4653f 100644 --- a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormDialogs.tsx +++ b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormDialogs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; import PaymentReceiveNumberDialog from '@/containers/Dialogs/PaymentReceiveNumberDialog'; diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormFooter.tsx b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormFooter.tsx index 765435fc8..bcf85e68b 100644 --- a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormFooter.tsx +++ b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import styled from 'styled-components'; diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormFootetLeft.tsx b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormFootetLeft.tsx index 54c069a81..0aea4912b 100644 --- a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormFootetLeft.tsx +++ b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormFootetLeft.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormFootetRight.tsx b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormFootetRight.tsx index 64a9e91f4..d35d7c6a7 100644 --- a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormFootetRight.tsx +++ b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormFootetRight.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormHeader.tsx b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormHeader.tsx index 409313286..ee2f1393e 100644 --- a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormHeader.tsx +++ b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import classNames from 'classnames'; import { sumBy } from 'lodash'; diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormPage.tsx b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormPage.tsx index 8cac5a52b..692462f17 100644 --- a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormPage.tsx +++ b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormPage.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useParams } from 'react-router-dom'; diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormProvider.tsx b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormProvider.tsx index 2f991930f..998ca45b8 100644 --- a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormProvider.tsx +++ b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useContext } from 'react'; import { Features } from '@/constants'; import { useFeatureCan } from '@/hooks/state'; diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormTopBar.tsx b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormTopBar.tsx index df011ed9d..073fbc42b 100644 --- a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormTopBar.tsx +++ b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormTopBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Alignment, NavbarGroup, Button, Classes } from '@blueprintjs/core'; diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveHeaderFields.tsx b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveHeaderFields.tsx index 58629774d..c777f6854 100644 --- a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveHeaderFields.tsx +++ b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveHeaderFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import classNames from 'classnames'; import styled from 'styled-components'; diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveInnerProvider.tsx b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveInnerProvider.tsx index b9af627be..3ea5d73df 100644 --- a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveInnerProvider.tsx +++ b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveInnerProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useContext, useEffect } from 'react'; import { useFormikContext } from 'formik'; import { useDueInvoices } from '@/hooks/query'; diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveItemsTable.tsx b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveItemsTable.tsx index 86022958a..5b8a1be34 100644 --- a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveItemsTable.tsx +++ b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveItemsTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import classNames from 'classnames'; import { CloudLoadingIndicator } from '@/components'; diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/components.tsx b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/components.tsx index 42bf8042a..30e16af7b 100644 --- a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/components.tsx +++ b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import intl from 'react-intl-universal'; diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/utils.tsx b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/utils.tsx index 8df6e328b..07c1b6f3a 100644 --- a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/utils.tsx +++ b/src/containers/Sales/PaymentReceives/PaymentReceiveForm/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import intl from 'react-intl-universal'; diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveUniversalSearch.tsx b/src/containers/Sales/PaymentReceives/PaymentReceiveUniversalSearch.tsx index 763c0813b..b2940ecb8 100644 --- a/src/containers/Sales/PaymentReceives/PaymentReceiveUniversalSearch.tsx +++ b/src/containers/Sales/PaymentReceives/PaymentReceiveUniversalSearch.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { MenuItem } from '@blueprintjs/core'; diff --git a/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceiptsListProvider.tsx b/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceiptsListProvider.tsx index 070cc9e16..1dbe1ce55 100644 --- a/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceiptsListProvider.tsx +++ b/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceiptsListProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useContext } from 'react'; import { isEmpty } from 'lodash'; diff --git a/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceiveActionsBar.tsx b/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceiveActionsBar.tsx index 22be8bdba..366e5791d 100644 --- a/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceiveActionsBar.tsx +++ b/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceiveActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, diff --git a/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceiveViewTabs.tsx b/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceiveViewTabs.tsx index 6f3a5ad26..929b50deb 100644 --- a/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceiveViewTabs.tsx +++ b/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceiveViewTabs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router'; import { Alignment, Navbar, NavbarGroup } from '@blueprintjs/core'; diff --git a/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceivesEmptyStatus.tsx b/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceivesEmptyStatus.tsx index 938f21dc5..66b521360 100644 --- a/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceivesEmptyStatus.tsx +++ b/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceivesEmptyStatus.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, Intent } from '@blueprintjs/core'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceivesList.tsx b/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceivesList.tsx index 318863d95..f2d8b2bb3 100644 --- a/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceivesList.tsx +++ b/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceivesList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import '@/style/pages/PaymentReceive/List.scss'; diff --git a/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceivesListProvider.tsx b/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceivesListProvider.tsx index ab08ae82f..02312101d 100644 --- a/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceivesListProvider.tsx +++ b/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceivesListProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext } from 'react'; import { isEmpty } from 'lodash'; diff --git a/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceivesTable.tsx b/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceivesTable.tsx index d301a02ef..ccc6efec1 100644 --- a/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceivesTable.tsx +++ b/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceivesTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Sales/PaymentReceives/PaymentsLanding/components.tsx b/src/containers/Sales/PaymentReceives/PaymentsLanding/components.tsx index 18769b75b..4af4f14ba 100644 --- a/src/containers/Sales/PaymentReceives/PaymentsLanding/components.tsx +++ b/src/containers/Sales/PaymentReceives/PaymentsLanding/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import clsx from 'classnames'; diff --git a/src/containers/Sales/PaymentReceives/PaymentsLanding/withPaymentReceiveDetail.tsx b/src/containers/Sales/PaymentReceives/PaymentsLanding/withPaymentReceiveDetail.tsx index 52ab2e76e..780ffe902 100644 --- a/src/containers/Sales/PaymentReceives/PaymentsLanding/withPaymentReceiveDetail.tsx +++ b/src/containers/Sales/PaymentReceives/PaymentsLanding/withPaymentReceiveDetail.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getPaymentReceiveByIdFactory, diff --git a/src/containers/Sales/PaymentReceives/PaymentsLanding/withPaymentReceives.tsx b/src/containers/Sales/PaymentReceives/PaymentsLanding/withPaymentReceives.tsx index 9559478dc..4da35efa2 100644 --- a/src/containers/Sales/PaymentReceives/PaymentsLanding/withPaymentReceives.tsx +++ b/src/containers/Sales/PaymentReceives/PaymentsLanding/withPaymentReceives.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getPaymentReceiveTableStateFactory, diff --git a/src/containers/Sales/PaymentReceives/PaymentsLanding/withPaymentReceivesActions.tsx b/src/containers/Sales/PaymentReceives/PaymentsLanding/withPaymentReceivesActions.tsx index df08489b4..0f37480c5 100644 --- a/src/containers/Sales/PaymentReceives/PaymentsLanding/withPaymentReceivesActions.tsx +++ b/src/containers/Sales/PaymentReceives/PaymentsLanding/withPaymentReceivesActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { setPaymentReceivesTableState, diff --git a/src/containers/Sales/Receipts/ReceiptForm/ReceiptForm.schema.tsx b/src/containers/Sales/Receipts/ReceiptForm/ReceiptForm.schema.tsx index 2293a94d0..e4216e801 100644 --- a/src/containers/Sales/Receipts/ReceiptForm/ReceiptForm.schema.tsx +++ b/src/containers/Sales/Receipts/ReceiptForm/ReceiptForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; import { DATATYPES_LENGTH } from '@/constants/dataTypes'; diff --git a/src/containers/Sales/Receipts/ReceiptForm/ReceiptForm.tsx b/src/containers/Sales/Receipts/ReceiptForm/ReceiptForm.tsx index 3cb66f87e..fba767919 100644 --- a/src/containers/Sales/Receipts/ReceiptForm/ReceiptForm.tsx +++ b/src/containers/Sales/Receipts/ReceiptForm/ReceiptForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import intl from 'react-intl-universal'; import classNames from 'classnames'; diff --git a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormCurrencyTag.tsx b/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormCurrencyTag.tsx index d77841066..1cdedeb45 100644 --- a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormCurrencyTag.tsx +++ b/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormCurrencyTag.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { BaseCurrency, BaseCurrencyRoot } from '@/components'; import { useReceiptFormContext } from './ReceiptFormProvider'; diff --git a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormDialogs.tsx b/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormDialogs.tsx index e99ab78d7..d378f878d 100644 --- a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormDialogs.tsx +++ b/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormDialogs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; import ReceiptNumberDialog from '@/containers/Dialogs/ReceiptNumberDialog'; diff --git a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormFloatingActions.tsx b/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormFloatingActions.tsx index 8f2e4045c..d8d83dfb5 100644 --- a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormFloatingActions.tsx +++ b/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import { diff --git a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormFooter.tsx b/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormFooter.tsx index 6247ad0ce..d3c93658a 100644 --- a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormFooter.tsx +++ b/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import styled from 'styled-components'; diff --git a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormFooterLeft.tsx b/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormFooterLeft.tsx index b9ee31bfe..433217e40 100644 --- a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormFooterLeft.tsx +++ b/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormFooterLeft.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormFooterRight.tsx b/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormFooterRight.tsx index 31f88bbeb..87f4bb896 100644 --- a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormFooterRight.tsx +++ b/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormFooterRight.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormHeader.tsx b/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormHeader.tsx index 61024dec4..8c5174c62 100644 --- a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormHeader.tsx +++ b/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import intl from 'react-intl-universal'; import classNames from 'classnames'; diff --git a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormHeaderFields.tsx b/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormHeaderFields.tsx index 8640d2b2a..ce0247fd2 100644 --- a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormHeaderFields.tsx +++ b/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormHeaderFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import styled from 'styled-components'; import classNames from 'classnames'; diff --git a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormPage.tsx b/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormPage.tsx index 6ddbd57b7..dddd093ab 100644 --- a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormPage.tsx +++ b/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormPage.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useParams } from 'react-router-dom'; diff --git a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormProvider.tsx b/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormProvider.tsx index 99e98895a..d70414252 100644 --- a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormProvider.tsx +++ b/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext, useState } from 'react'; import { Features } from '@/constants'; import { useFeatureCan } from '@/hooks/state'; diff --git a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormTopbar.tsx b/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormTopbar.tsx index 560c8ee67..c1cb46eaf 100644 --- a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormTopbar.tsx +++ b/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormTopbar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/Sales/Receipts/ReceiptForm/ReceiptItemsEntriesEditor.tsx b/src/containers/Sales/Receipts/ReceiptForm/ReceiptItemsEntriesEditor.tsx index 2c0c55013..1fbf003de 100644 --- a/src/containers/Sales/Receipts/ReceiptForm/ReceiptItemsEntriesEditor.tsx +++ b/src/containers/Sales/Receipts/ReceiptForm/ReceiptItemsEntriesEditor.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import { FastField } from 'formik'; diff --git a/src/containers/Sales/Receipts/ReceiptForm/components.tsx b/src/containers/Sales/Receipts/ReceiptForm/components.tsx index cdb54df87..417daea29 100644 --- a/src/containers/Sales/Receipts/ReceiptForm/components.tsx +++ b/src/containers/Sales/Receipts/ReceiptForm/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Button } from '@blueprintjs/core'; diff --git a/src/containers/Sales/Receipts/ReceiptForm/utils.tsx b/src/containers/Sales/Receipts/ReceiptForm/utils.tsx index e52215c3a..ceaf63fd7 100644 --- a/src/containers/Sales/Receipts/ReceiptForm/utils.tsx +++ b/src/containers/Sales/Receipts/ReceiptForm/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import moment from 'moment'; diff --git a/src/containers/Sales/Receipts/ReceiptUniversalSearch.tsx b/src/containers/Sales/Receipts/ReceiptUniversalSearch.tsx index 156f53e5c..19e1d7a71 100644 --- a/src/containers/Sales/Receipts/ReceiptUniversalSearch.tsx +++ b/src/containers/Sales/Receipts/ReceiptUniversalSearch.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { MenuItem } from '@blueprintjs/core'; diff --git a/src/containers/Sales/Receipts/ReceiptsAlerts.tsx b/src/containers/Sales/Receipts/ReceiptsAlerts.tsx index 4c22ec709..27cdeafa9 100644 --- a/src/containers/Sales/Receipts/ReceiptsAlerts.tsx +++ b/src/containers/Sales/Receipts/ReceiptsAlerts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; const ReceiptDeleteAlert = React.lazy( diff --git a/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptActionsBar.tsx b/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptActionsBar.tsx index e3a31889e..828ff5a70 100644 --- a/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptActionsBar.tsx +++ b/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useState } from 'react'; import { Button, diff --git a/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptViewTabs.tsx b/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptViewTabs.tsx index 29165be6b..a44f4315f 100644 --- a/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptViewTabs.tsx +++ b/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptViewTabs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Alignment, Navbar, NavbarGroup } from '@blueprintjs/core'; diff --git a/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptsEmptyStatus.tsx b/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptsEmptyStatus.tsx index 03a349717..d0fefd4ba 100644 --- a/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptsEmptyStatus.tsx +++ b/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptsEmptyStatus.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, Intent } from '@blueprintjs/core'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptsList.tsx b/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptsList.tsx index f45ebdcbf..686226152 100644 --- a/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptsList.tsx +++ b/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptsList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DashboardPageContent } from '@/components'; diff --git a/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptsListProvider.tsx b/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptsListProvider.tsx index 2596b2c35..8cebf7310 100644 --- a/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptsListProvider.tsx +++ b/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptsListProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext } from 'react'; import { isEmpty } from 'lodash'; diff --git a/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptsTable.tsx b/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptsTable.tsx index f4e09c2f3..9b65c01ad 100644 --- a/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptsTable.tsx +++ b/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptsTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useCallback } from 'react'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Sales/Receipts/ReceiptsLanding/components.tsx b/src/containers/Sales/Receipts/ReceiptsLanding/components.tsx index 67c051585..4d843937e 100644 --- a/src/containers/Sales/Receipts/ReceiptsLanding/components.tsx +++ b/src/containers/Sales/Receipts/ReceiptsLanding/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import clsx from 'classnames'; diff --git a/src/containers/Sales/Receipts/ReceiptsLanding/withReceipts.tsx b/src/containers/Sales/Receipts/ReceiptsLanding/withReceipts.tsx index ec08089c4..41ecf9538 100644 --- a/src/containers/Sales/Receipts/ReceiptsLanding/withReceipts.tsx +++ b/src/containers/Sales/Receipts/ReceiptsLanding/withReceipts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getReceiptsTableStateFactory, diff --git a/src/containers/Sales/Receipts/ReceiptsLanding/withReceiptsActions.tsx b/src/containers/Sales/Receipts/ReceiptsLanding/withReceiptsActions.tsx index 9468a4be1..db590cd65 100644 --- a/src/containers/Sales/Receipts/ReceiptsLanding/withReceiptsActions.tsx +++ b/src/containers/Sales/Receipts/ReceiptsLanding/withReceiptsActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { setReceiptsTableState, diff --git a/src/containers/Settings/withSettings.tsx b/src/containers/Settings/withSettings.tsx index 6aac1c8ed..9b34cd232 100644 --- a/src/containers/Settings/withSettings.tsx +++ b/src/containers/Settings/withSettings.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; export default (mapState) => { diff --git a/src/containers/Settings/withSettingsActions.tsx b/src/containers/Settings/withSettingsActions.tsx index 52bba4768..a2cc7e107 100644 --- a/src/containers/Settings/withSettingsActions.tsx +++ b/src/containers/Settings/withSettingsActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { FetchOptions, diff --git a/src/containers/Setup/SetupCongratsPage.tsx b/src/containers/Setup/SetupCongratsPage.tsx index ded46b7fa..9b3baaeaf 100644 --- a/src/containers/Setup/SetupCongratsPage.tsx +++ b/src/containers/Setup/SetupCongratsPage.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, Intent } from '@blueprintjs/core'; diff --git a/src/containers/Setup/SetupDialogs.tsx b/src/containers/Setup/SetupDialogs.tsx index 27371eb74..1e3c8d754 100644 --- a/src/containers/Setup/SetupDialogs.tsx +++ b/src/containers/Setup/SetupDialogs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import PaymentViaVoucherDialog from '@/containers/Dialogs/PaymentViaVoucherDialog'; diff --git a/src/containers/Setup/SetupInitializingForm.tsx b/src/containers/Setup/SetupInitializingForm.tsx index 5283994ca..a348a4876 100644 --- a/src/containers/Setup/SetupInitializingForm.tsx +++ b/src/containers/Setup/SetupInitializingForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { ProgressBar, Intent } from '@blueprintjs/core'; import * as R from 'ramda'; diff --git a/src/containers/Setup/SetupLeftSection.tsx b/src/containers/Setup/SetupLeftSection.tsx index 82b735b9f..296f386f4 100644 --- a/src/containers/Setup/SetupLeftSection.tsx +++ b/src/containers/Setup/SetupLeftSection.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Icon, For, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Setup/SetupOrganization.schema.tsx b/src/containers/Setup/SetupOrganization.schema.tsx index c3424f5b7..ec64eae68 100644 --- a/src/containers/Setup/SetupOrganization.schema.tsx +++ b/src/containers/Setup/SetupOrganization.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; diff --git a/src/containers/Setup/SetupOrganizationForm.tsx b/src/containers/Setup/SetupOrganizationForm.tsx index 58160c44f..1ef1fb00c 100644 --- a/src/containers/Setup/SetupOrganizationForm.tsx +++ b/src/containers/Setup/SetupOrganizationForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FastField, Form, ErrorMessage } from 'formik'; import { diff --git a/src/containers/Setup/SetupOrganizationPage.tsx b/src/containers/Setup/SetupOrganizationPage.tsx index 39ea8ec1d..f119aa931 100644 --- a/src/containers/Setup/SetupOrganizationPage.tsx +++ b/src/containers/Setup/SetupOrganizationPage.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Formik } from 'formik'; import { FormattedMessage as T } from '@/components'; diff --git a/src/containers/Setup/SetupRightSection.tsx b/src/containers/Setup/SetupRightSection.tsx index 23083f63d..91ee8fa1e 100644 --- a/src/containers/Setup/SetupRightSection.tsx +++ b/src/containers/Setup/SetupRightSection.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import SetupDialogs from './SetupDialogs'; diff --git a/src/containers/Setup/SetupSteps.tsx b/src/containers/Setup/SetupSteps.tsx index 15a5c0019..e24019774 100644 --- a/src/containers/Setup/SetupSteps.tsx +++ b/src/containers/Setup/SetupSteps.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; export default function SetupSteps({ step, children }) { diff --git a/src/containers/Setup/SetupSubscription.tsx b/src/containers/Setup/SetupSubscription.tsx index cb5f18a6f..7b0d419b5 100644 --- a/src/containers/Setup/SetupSubscription.tsx +++ b/src/containers/Setup/SetupSubscription.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Formik } from 'formik'; import * as R from 'ramda'; diff --git a/src/containers/Setup/SetupSubscription/SetupSubscriptionForm.tsx b/src/containers/Setup/SetupSubscription/SetupSubscriptionForm.tsx index a1a6a97ca..1029bf0d4 100644 --- a/src/containers/Setup/SetupSubscription/SetupSubscriptionForm.tsx +++ b/src/containers/Setup/SetupSubscription/SetupSubscriptionForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import SubscriptionPlansSection from './SubscriptionPlansSection'; diff --git a/src/containers/Setup/SetupSubscription/SubscriptionPaymentsMethodsSection.tsx b/src/containers/Setup/SetupSubscription/SubscriptionPaymentsMethodsSection.tsx index 6019e9db2..811d00f20 100644 --- a/src/containers/Setup/SetupSubscription/SubscriptionPaymentsMethodsSection.tsx +++ b/src/containers/Setup/SetupSubscription/SubscriptionPaymentsMethodsSection.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { T } from '@/components'; diff --git a/src/containers/Setup/SetupSubscription/SubscriptionPeriodsSection.tsx b/src/containers/Setup/SetupSubscription/SubscriptionPeriodsSection.tsx index 33021b578..3a5e66a87 100644 --- a/src/containers/Setup/SetupSubscription/SubscriptionPeriodsSection.tsx +++ b/src/containers/Setup/SetupSubscription/SubscriptionPeriodsSection.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Field } from 'formik'; import * as R from 'ramda'; diff --git a/src/containers/Setup/SetupSubscription/SubscriptionPlansSection.tsx b/src/containers/Setup/SetupSubscription/SubscriptionPlansSection.tsx index f6a187643..14adf9b18 100644 --- a/src/containers/Setup/SetupSubscription/SubscriptionPlansSection.tsx +++ b/src/containers/Setup/SetupSubscription/SubscriptionPlansSection.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Field } from 'formik'; diff --git a/src/containers/Setup/SetupWizardContent.tsx b/src/containers/Setup/SetupWizardContent.tsx index 3c44cec69..57b162ccf 100644 --- a/src/containers/Setup/SetupWizardContent.tsx +++ b/src/containers/Setup/SetupWizardContent.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import SetupSteps from './SetupSteps'; diff --git a/src/containers/Setup/SubscriptionForm.schema.tsx b/src/containers/Setup/SubscriptionForm.schema.tsx index 8dea27207..a552a53dd 100644 --- a/src/containers/Setup/SubscriptionForm.schema.tsx +++ b/src/containers/Setup/SubscriptionForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; diff --git a/src/containers/Setup/WizardSetupPage.tsx b/src/containers/Setup/WizardSetupPage.tsx index 368564678..d61eb39bd 100644 --- a/src/containers/Setup/WizardSetupPage.tsx +++ b/src/containers/Setup/WizardSetupPage.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import SetupRightSection from './SetupRightSection'; import SetupLeftSection from './SetupLeftSection'; diff --git a/src/containers/Setup/WizardSetupSteps.tsx b/src/containers/Setup/WizardSetupSteps.tsx index 5ad4cc528..36b53a37e 100644 --- a/src/containers/Setup/WizardSetupSteps.tsx +++ b/src/containers/Setup/WizardSetupSteps.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import { getSetupWizardSteps } from '@/constants/registerWizard'; diff --git a/src/containers/Setup/WorkflowIcon.tsx b/src/containers/Setup/WorkflowIcon.tsx index 88eb709aa..7758fa838 100644 --- a/src/containers/Setup/WorkflowIcon.tsx +++ b/src/containers/Setup/WorkflowIcon.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; export default function WorkflowIcon({ diff --git a/src/containers/Subscriptions/BillingForm.tsx b/src/containers/Subscriptions/BillingForm.tsx index df29245c0..3b4a7cd13 100644 --- a/src/containers/Subscriptions/BillingForm.tsx +++ b/src/containers/Subscriptions/BillingForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect } from 'react'; import intl from 'react-intl-universal'; import { Formik, Form } from 'formik'; diff --git a/src/containers/Subscriptions/BillingPaymentMethod.tsx b/src/containers/Subscriptions/BillingPaymentMethod.tsx index 09dc029bd..ec65c64fc 100644 --- a/src/containers/Subscriptions/BillingPaymentMethod.tsx +++ b/src/containers/Subscriptions/BillingPaymentMethod.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { T } from '@/components'; diff --git a/src/containers/Subscriptions/BillingPeriod.tsx b/src/containers/Subscriptions/BillingPeriod.tsx index 287a63e8c..a36921452 100644 --- a/src/containers/Subscriptions/BillingPeriod.tsx +++ b/src/containers/Subscriptions/BillingPeriod.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import { get } from 'lodash'; diff --git a/src/containers/Subscriptions/BillingPeriodsInput.tsx b/src/containers/Subscriptions/BillingPeriodsInput.tsx index 9d2e9e57d..eceda78ad 100644 --- a/src/containers/Subscriptions/BillingPeriodsInput.tsx +++ b/src/containers/Subscriptions/BillingPeriodsInput.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Field } from 'formik'; import * as R from 'ramda'; diff --git a/src/containers/Subscriptions/BillingPlan.tsx b/src/containers/Subscriptions/BillingPlan.tsx index 0e6443a42..a463dc52d 100644 --- a/src/containers/Subscriptions/BillingPlan.tsx +++ b/src/containers/Subscriptions/BillingPlan.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import { FormattedMessage as T } from '@/components'; diff --git a/src/containers/Subscriptions/BillingPlansForm.tsx b/src/containers/Subscriptions/BillingPlansForm.tsx index baa0fd9c7..fc2c319cc 100644 --- a/src/containers/Subscriptions/BillingPlansForm.tsx +++ b/src/containers/Subscriptions/BillingPlansForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as R from 'ramda'; diff --git a/src/containers/Subscriptions/BillingPlansInput.tsx b/src/containers/Subscriptions/BillingPlansInput.tsx index dddcf78ec..d7bdfa23e 100644 --- a/src/containers/Subscriptions/BillingPlansInput.tsx +++ b/src/containers/Subscriptions/BillingPlansInput.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Field } from 'formik'; import { T, SubscriptionPlans } from '@/components'; diff --git a/src/containers/Subscriptions/BillingTab.tsx b/src/containers/Subscriptions/BillingTab.tsx index 9212c6f50..e4235d14c 100644 --- a/src/containers/Subscriptions/BillingTab.tsx +++ b/src/containers/Subscriptions/BillingTab.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import BillingPlansForm from './BillingPlansForm'; diff --git a/src/containers/Subscriptions/LicenseTab.tsx b/src/containers/Subscriptions/LicenseTab.tsx index dd883c799..e069ffbf9 100644 --- a/src/containers/Subscriptions/LicenseTab.tsx +++ b/src/containers/Subscriptions/LicenseTab.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, Button } from '@blueprintjs/core'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Subscriptions/SubscriptionTabs.tsx b/src/containers/Subscriptions/SubscriptionTabs.tsx index 29f1a5f51..3f2ec6a05 100644 --- a/src/containers/Subscriptions/SubscriptionTabs.tsx +++ b/src/containers/Subscriptions/SubscriptionTabs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Tabs, Tab } from '@blueprintjs/core'; diff --git a/src/containers/Subscriptions/utils.tsx b/src/containers/Subscriptions/utils.tsx index 76275083e..041234fc9 100644 --- a/src/containers/Subscriptions/utils.tsx +++ b/src/containers/Subscriptions/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; export const getBillingFormValidationSchema = () => diff --git a/src/containers/Subscriptions/withBillingActions.tsx b/src/containers/Subscriptions/withBillingActions.tsx index a39db0e06..0a41d2007 100644 --- a/src/containers/Subscriptions/withBillingActions.tsx +++ b/src/containers/Subscriptions/withBillingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { submitBilling } from '@/store/billing/Billing.action'; diff --git a/src/containers/Subscriptions/withPlan.tsx b/src/containers/Subscriptions/withPlan.tsx index 0342b11f2..71b82c049 100644 --- a/src/containers/Subscriptions/withPlan.tsx +++ b/src/containers/Subscriptions/withPlan.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getPlanSelector } from '@/store/plans/plans.selectors'; diff --git a/src/containers/Subscriptions/withPlans.tsx b/src/containers/Subscriptions/withPlans.tsx index d459afc7a..51c31d93b 100644 --- a/src/containers/Subscriptions/withPlans.tsx +++ b/src/containers/Subscriptions/withPlans.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getPlansSelector, diff --git a/src/containers/Subscriptions/withSubscriptionPlansActions.tsx b/src/containers/Subscriptions/withSubscriptionPlansActions.tsx index 945986fcb..330af343a 100644 --- a/src/containers/Subscriptions/withSubscriptionPlansActions.tsx +++ b/src/containers/Subscriptions/withSubscriptionPlansActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { initSubscriptionPlans } from '@/store/plans/plans.actions'; diff --git a/src/containers/Subscriptions/withSubscriptions.tsx b/src/containers/Subscriptions/withSubscriptions.tsx index 8d529e03f..6cb9bf5c0 100644 --- a/src/containers/Subscriptions/withSubscriptions.tsx +++ b/src/containers/Subscriptions/withSubscriptions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { isSubscriptionOnTrialFactory, diff --git a/src/containers/Subscriptions/withSubscriptionsActions.tsx b/src/containers/Subscriptions/withSubscriptionsActions.tsx index f3df3dd67..1166832b7 100644 --- a/src/containers/Subscriptions/withSubscriptionsActions.tsx +++ b/src/containers/Subscriptions/withSubscriptionsActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { fetchSubscriptions } from '@/store/subscription/subscription.actions'; diff --git a/src/containers/Subscriptions/withSubscriptionss.tsx b/src/containers/Subscriptions/withSubscriptionss.tsx index dcf067c62..3c9e03f90 100644 --- a/src/containers/Subscriptions/withSubscriptionss.tsx +++ b/src/containers/Subscriptions/withSubscriptionss.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { isSubscriptionsInactiveFactory, diff --git a/src/containers/TransactionsLocking/TransactionsLockingAlerts.tsx b/src/containers/TransactionsLocking/TransactionsLockingAlerts.tsx index 658f296cb..62338bca5 100644 --- a/src/containers/TransactionsLocking/TransactionsLockingAlerts.tsx +++ b/src/containers/TransactionsLocking/TransactionsLockingAlerts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; const cancelUnlockingPartialAlert = React.lazy( diff --git a/src/containers/TransactionsLocking/TransactionsLockingBody.tsx b/src/containers/TransactionsLocking/TransactionsLockingBody.tsx index c99394fd0..ba39adbfd 100644 --- a/src/containers/TransactionsLocking/TransactionsLockingBody.tsx +++ b/src/containers/TransactionsLocking/TransactionsLockingBody.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as R from 'ramda'; import { diff --git a/src/containers/TransactionsLocking/TransactionsLockingHeader.tsx b/src/containers/TransactionsLocking/TransactionsLockingHeader.tsx index 44fd8b33f..40dd1e736 100644 --- a/src/containers/TransactionsLocking/TransactionsLockingHeader.tsx +++ b/src/containers/TransactionsLocking/TransactionsLockingHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; diff --git a/src/containers/TransactionsLocking/TransactionsLockingList.tsx b/src/containers/TransactionsLocking/TransactionsLockingList.tsx index 45551fb35..e30a7a64a 100644 --- a/src/containers/TransactionsLocking/TransactionsLockingList.tsx +++ b/src/containers/TransactionsLocking/TransactionsLockingList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; diff --git a/src/containers/TransactionsLocking/TransactionsLockingPage.tsx b/src/containers/TransactionsLocking/TransactionsLockingPage.tsx index 0ea88c231..a52c1c243 100644 --- a/src/containers/TransactionsLocking/TransactionsLockingPage.tsx +++ b/src/containers/TransactionsLocking/TransactionsLockingPage.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { TransactionsLockingProvider } from './TransactionsLockingProvider'; diff --git a/src/containers/TransactionsLocking/TransactionsLockingProvider.tsx b/src/containers/TransactionsLocking/TransactionsLockingProvider.tsx index 78710aa53..86d7e25ea 100644 --- a/src/containers/TransactionsLocking/TransactionsLockingProvider.tsx +++ b/src/containers/TransactionsLocking/TransactionsLockingProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DashboardInsider } from '@/components/Dashboard'; import { useTransactionsLocking } from '@/hooks/query'; diff --git a/src/containers/TransactionsLocking/components.tsx b/src/containers/TransactionsLocking/components.tsx index faa6fbd1c..63ceeb26c 100644 --- a/src/containers/TransactionsLocking/components.tsx +++ b/src/containers/TransactionsLocking/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import intl from 'react-intl-universal'; diff --git a/src/containers/TransactionsLocking/utils.tsx b/src/containers/TransactionsLocking/utils.tsx index f523d65c6..6c3f47db1 100644 --- a/src/containers/TransactionsLocking/utils.tsx +++ b/src/containers/TransactionsLocking/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export const validateMoveToPartialLocking = (all) => { return all.is_enabled; }; diff --git a/src/containers/UniversalSearch/DashboardUniversalSearch.tsx b/src/containers/UniversalSearch/DashboardUniversalSearch.tsx index ac84f7b3b..cf67c054b 100644 --- a/src/containers/UniversalSearch/DashboardUniversalSearch.tsx +++ b/src/containers/UniversalSearch/DashboardUniversalSearch.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { debounce } from 'lodash'; import { isUndefined } from 'lodash'; diff --git a/src/containers/UniversalSearch/DashboardUniversalSearchBinds.tsx b/src/containers/UniversalSearch/DashboardUniversalSearchBinds.tsx index 2de45627f..6ce67a73a 100644 --- a/src/containers/UniversalSearch/DashboardUniversalSearchBinds.tsx +++ b/src/containers/UniversalSearch/DashboardUniversalSearchBinds.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { universalSearchInvoiceBind } from '../Sales/Invoices/InvoiceUniversalSearch'; import { universalSearchReceiptBind } from '../Sales/Receipts/ReceiptUniversalSearch'; import { universalSearchBillBind } from '../Purchases/Bills/BillUniversalSearch'; diff --git a/src/containers/UniversalSearch/DashboardUniversalSearchHotkeys.tsx b/src/containers/UniversalSearch/DashboardUniversalSearchHotkeys.tsx index 34683820f..c0442f8d3 100644 --- a/src/containers/UniversalSearch/DashboardUniversalSearchHotkeys.tsx +++ b/src/containers/UniversalSearch/DashboardUniversalSearchHotkeys.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as R from 'ramda'; import { useHotkeys } from 'react-hotkeys-hook'; diff --git a/src/containers/UniversalSearch/DashboardUniversalSearchItemActions.tsx b/src/containers/UniversalSearch/DashboardUniversalSearchItemActions.tsx index 4de42eec5..5b03939ce 100644 --- a/src/containers/UniversalSearch/DashboardUniversalSearchItemActions.tsx +++ b/src/containers/UniversalSearch/DashboardUniversalSearchItemActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import * as R from 'ramda'; diff --git a/src/containers/UniversalSearch/components.tsx b/src/containers/UniversalSearch/components.tsx index d6886451b..c080be0d3 100644 --- a/src/containers/UniversalSearch/components.tsx +++ b/src/containers/UniversalSearch/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { MenuItem } from '@blueprintjs/core'; diff --git a/src/containers/UniversalSearch/utils.tsx b/src/containers/UniversalSearch/utils.tsx index d2f399a37..fcc6ea22f 100644 --- a/src/containers/UniversalSearch/utils.tsx +++ b/src/containers/UniversalSearch/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { get } from 'lodash'; import * as R from 'ramda'; import React from 'react'; diff --git a/src/containers/UniversalSearch/withUniversalSearch.tsx b/src/containers/UniversalSearch/withUniversalSearch.tsx index b8fbba8b5..0ada4cde7 100644 --- a/src/containers/UniversalSearch/withUniversalSearch.tsx +++ b/src/containers/UniversalSearch/withUniversalSearch.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; export default (mapState) => { diff --git a/src/containers/UniversalSearch/withUniversalSearchActions.tsx b/src/containers/UniversalSearch/withUniversalSearchActions.tsx index cfda1d310..7eb8283fe 100644 --- a/src/containers/UniversalSearch/withUniversalSearchActions.tsx +++ b/src/containers/UniversalSearch/withUniversalSearchActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import t from '@/store/types'; import { diff --git a/src/containers/Users/withUsers.tsx b/src/containers/Users/withUsers.tsx index 1531a67ff..92f114381 100644 --- a/src/containers/Users/withUsers.tsx +++ b/src/containers/Users/withUsers.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getExpensesCurrentPageFactory } from '@/store/users/users.selectors'; diff --git a/src/containers/Users/withUsersActions.tsx b/src/containers/Users/withUsersActions.tsx index 039f96472..3da74e03f 100644 --- a/src/containers/Users/withUsersActions.tsx +++ b/src/containers/Users/withUsersActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { fetchUsers, diff --git a/src/containers/Vendors/VendorForm/VendorAttahmentTab.tsx b/src/containers/Vendors/VendorForm/VendorAttahmentTab.tsx index bb1dbb05f..5d80112fe 100644 --- a/src/containers/Vendors/VendorForm/VendorAttahmentTab.tsx +++ b/src/containers/Vendors/VendorForm/VendorAttahmentTab.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Dragzone, FormattedMessage as T } from '@/components'; diff --git a/src/containers/Vendors/VendorForm/VendorFinanicalPanelTab.tsx b/src/containers/Vendors/VendorForm/VendorFinanicalPanelTab.tsx index 32c45b195..ada9e1930 100644 --- a/src/containers/Vendors/VendorForm/VendorFinanicalPanelTab.tsx +++ b/src/containers/Vendors/VendorForm/VendorFinanicalPanelTab.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import classNames from 'classnames'; diff --git a/src/containers/Vendors/VendorForm/VendorFloatingActions.tsx b/src/containers/Vendors/VendorForm/VendorFloatingActions.tsx index 7866b466c..1bd97563c 100644 --- a/src/containers/Vendors/VendorForm/VendorFloatingActions.tsx +++ b/src/containers/Vendors/VendorForm/VendorFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Intent, diff --git a/src/containers/Vendors/VendorForm/VendorForm.schema.tsx b/src/containers/Vendors/VendorForm/VendorForm.schema.tsx index 714ab1137..6eb0edf71 100644 --- a/src/containers/Vendors/VendorForm/VendorForm.schema.tsx +++ b/src/containers/Vendors/VendorForm/VendorForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; diff --git a/src/containers/Vendors/VendorForm/VendorFormAfterPrimarySection.tsx b/src/containers/Vendors/VendorForm/VendorFormAfterPrimarySection.tsx index bc6efc8f7..79a607576 100644 --- a/src/containers/Vendors/VendorForm/VendorFormAfterPrimarySection.tsx +++ b/src/containers/Vendors/VendorForm/VendorFormAfterPrimarySection.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { FormGroup, InputGroup, ControlGroup } from '@blueprintjs/core'; diff --git a/src/containers/Vendors/VendorForm/VendorFormFormik.tsx b/src/containers/Vendors/VendorForm/VendorFormFormik.tsx index faabe5598..642cdd27c 100644 --- a/src/containers/Vendors/VendorForm/VendorFormFormik.tsx +++ b/src/containers/Vendors/VendorForm/VendorFormFormik.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useMemo } from 'react'; import intl from 'react-intl-universal'; import { Formik, Form } from 'formik'; diff --git a/src/containers/Vendors/VendorForm/VendorFormPage.tsx b/src/containers/Vendors/VendorForm/VendorFormPage.tsx index f5d475908..9d51ed764 100644 --- a/src/containers/Vendors/VendorForm/VendorFormPage.tsx +++ b/src/containers/Vendors/VendorForm/VendorFormPage.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { useParams, useHistory } from 'react-router-dom'; diff --git a/src/containers/Vendors/VendorForm/VendorFormPrimarySection.tsx b/src/containers/Vendors/VendorForm/VendorFormPrimarySection.tsx index c9a217c9b..464508594 100644 --- a/src/containers/Vendors/VendorForm/VendorFormPrimarySection.tsx +++ b/src/containers/Vendors/VendorForm/VendorFormPrimarySection.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import classNames from 'classnames'; diff --git a/src/containers/Vendors/VendorForm/VendorFormProvider.tsx b/src/containers/Vendors/VendorForm/VendorFormProvider.tsx index a38ae10c3..0d44267c7 100644 --- a/src/containers/Vendors/VendorForm/VendorFormProvider.tsx +++ b/src/containers/Vendors/VendorForm/VendorFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useState, createContext } from 'react'; import { omit } from 'lodash'; import { useLocation } from 'react-router-dom'; diff --git a/src/containers/Vendors/VendorForm/VendorsTabs.tsx b/src/containers/Vendors/VendorForm/VendorsTabs.tsx index baaecd3ba..750d7b6b6 100644 --- a/src/containers/Vendors/VendorForm/VendorsTabs.tsx +++ b/src/containers/Vendors/VendorForm/VendorsTabs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import classNames from 'classnames'; diff --git a/src/containers/Vendors/VendorForm/utils.tsx b/src/containers/Vendors/VendorForm/utils.tsx index b1157c4a0..72ffdb9bc 100644 --- a/src/containers/Vendors/VendorForm/utils.tsx +++ b/src/containers/Vendors/VendorForm/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import { useFormikContext } from 'formik'; diff --git a/src/containers/Vendors/VendorsAlerts.tsx b/src/containers/Vendors/VendorsAlerts.tsx index 8c9eb7d17..1eca0055b 100644 --- a/src/containers/Vendors/VendorsAlerts.tsx +++ b/src/containers/Vendors/VendorsAlerts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; const VendorDeleteAlert = React.lazy( diff --git a/src/containers/Vendors/VendorsLanding/VendorActionsBar.tsx b/src/containers/Vendors/VendorsLanding/VendorActionsBar.tsx index 076d49bc7..4fe9cd03b 100644 --- a/src/containers/Vendors/VendorsLanding/VendorActionsBar.tsx +++ b/src/containers/Vendors/VendorsLanding/VendorActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { NavbarGroup, diff --git a/src/containers/Vendors/VendorsLanding/VendorViewsTabs.tsx b/src/containers/Vendors/VendorsLanding/VendorViewsTabs.tsx index 830330387..d6c1838ab 100644 --- a/src/containers/Vendors/VendorsLanding/VendorViewsTabs.tsx +++ b/src/containers/Vendors/VendorsLanding/VendorViewsTabs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Alignment, Navbar, NavbarGroup } from '@blueprintjs/core'; import { useVendorsListContext } from './VendorsListProvider'; diff --git a/src/containers/Vendors/VendorsLanding/VendorsEmptyStatus.tsx b/src/containers/Vendors/VendorsLanding/VendorsEmptyStatus.tsx index 1ccecc21e..5bdc4679a 100644 --- a/src/containers/Vendors/VendorsLanding/VendorsEmptyStatus.tsx +++ b/src/containers/Vendors/VendorsLanding/VendorsEmptyStatus.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Button, Intent } from '@blueprintjs/core'; import { useHistory } from 'react-router-dom'; diff --git a/src/containers/Vendors/VendorsLanding/VendorsList.tsx b/src/containers/Vendors/VendorsLanding/VendorsList.tsx index 57f8a28ff..c558f6024 100644 --- a/src/containers/Vendors/VendorsLanding/VendorsList.tsx +++ b/src/containers/Vendors/VendorsLanding/VendorsList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect } from 'react'; import '@/style/pages/Vendors/List.scss'; diff --git a/src/containers/Vendors/VendorsLanding/VendorsListProvider.tsx b/src/containers/Vendors/VendorsLanding/VendorsListProvider.tsx index f80159bdc..c6d596903 100644 --- a/src/containers/Vendors/VendorsLanding/VendorsListProvider.tsx +++ b/src/containers/Vendors/VendorsLanding/VendorsListProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext } from 'react'; import { isEmpty } from 'lodash'; diff --git a/src/containers/Vendors/VendorsLanding/VendorsTable.tsx b/src/containers/Vendors/VendorsLanding/VendorsTable.tsx index 7c708a5f5..8a83115ff 100644 --- a/src/containers/Vendors/VendorsLanding/VendorsTable.tsx +++ b/src/containers/Vendors/VendorsLanding/VendorsTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router'; diff --git a/src/containers/Vendors/VendorsLanding/components.tsx b/src/containers/Vendors/VendorsLanding/components.tsx index c1e9fc8a5..719b75a8e 100644 --- a/src/containers/Vendors/VendorsLanding/components.tsx +++ b/src/containers/Vendors/VendorsLanding/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { diff --git a/src/containers/Vendors/VendorsLanding/utils.tsx b/src/containers/Vendors/VendorsLanding/utils.tsx index 145e21b8f..fc4c311f8 100644 --- a/src/containers/Vendors/VendorsLanding/utils.tsx +++ b/src/containers/Vendors/VendorsLanding/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useCallback } from 'react'; import intl from 'react-intl-universal'; import { Intent } from '@blueprintjs/core'; diff --git a/src/containers/Vendors/VendorsLanding/withVendors.tsx b/src/containers/Vendors/VendorsLanding/withVendors.tsx index 7a545703f..9a672b221 100644 --- a/src/containers/Vendors/VendorsLanding/withVendors.tsx +++ b/src/containers/Vendors/VendorsLanding/withVendors.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getVendorsTableStateFactory, diff --git a/src/containers/Vendors/VendorsLanding/withVendorsActions.tsx b/src/containers/Vendors/VendorsLanding/withVendorsActions.tsx index 8f657e68d..cbc0a6da9 100644 --- a/src/containers/Vendors/VendorsLanding/withVendorsActions.tsx +++ b/src/containers/Vendors/VendorsLanding/withVendorsActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { setVendorsTableState, diff --git a/src/containers/Vendors/VendorsUniversalSearch.tsx b/src/containers/Vendors/VendorsUniversalSearch.tsx index aa0135140..3b69d6dd6 100644 --- a/src/containers/Vendors/VendorsUniversalSearch.tsx +++ b/src/containers/Vendors/VendorsUniversalSearch.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import intl from 'react-intl-universal'; import { RESOURCES_TYPES } from '@/constants/resourcesTypes'; diff --git a/src/containers/Vendors/utils.tsx b/src/containers/Vendors/utils.tsx index 442787cae..86de844ae 100644 --- a/src/containers/Vendors/utils.tsx +++ b/src/containers/Vendors/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent } from '@blueprintjs/core'; diff --git a/src/containers/Vendors/withVendorDetail.tsx b/src/containers/Vendors/withVendorDetail.tsx index 0a668e8cf..8ed944492 100644 --- a/src/containers/Vendors/withVendorDetail.tsx +++ b/src/containers/Vendors/withVendorDetail.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getVendorByIdFactory } from '@/store/vendors/vendors.selectors'; diff --git a/src/containers/Views/ViewForm.container.tsx b/src/containers/Views/ViewForm.container.tsx index b9c0f9c93..cde9e91fd 100644 --- a/src/containers/Views/ViewForm.container.tsx +++ b/src/containers/Views/ViewForm.container.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import {connect} from 'react-redux'; import {compose} from '@/utils'; diff --git a/src/containers/Views/ViewForm.tsx b/src/containers/Views/ViewForm.tsx index de9d1b094..18d438fe7 100644 --- a/src/containers/Views/ViewForm.tsx +++ b/src/containers/Views/ViewForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useState, useEffect, useCallback, useMemo } from 'react'; import { useFormik } from 'formik'; import { FormattedMessage as T } from '@/components'; diff --git a/src/containers/Views/ViewFormPage.tsx b/src/containers/Views/ViewFormPage.tsx index 291a61421..1d2769850 100644 --- a/src/containers/Views/ViewFormPage.tsx +++ b/src/containers/Views/ViewFormPage.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useEffect, useState, useCallback } from 'react'; import { useAsync } from 'react-use'; import { useParams } from 'react-router-dom'; diff --git a/src/containers/Views/withCurrentView.tsx b/src/containers/Views/withCurrentView.tsx index c3456c73b..19a6bb62e 100644 --- a/src/containers/Views/withCurrentView.tsx +++ b/src/containers/Views/withCurrentView.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; const mapStateToProps = (state, props) => ({ diff --git a/src/containers/Views/withViewDetails.tsx b/src/containers/Views/withViewDetails.tsx index 0d8324e58..3b1435e52 100644 --- a/src/containers/Views/withViewDetails.tsx +++ b/src/containers/Views/withViewDetails.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import {connect} from 'react-redux'; import { getViewItemFactory, diff --git a/src/containers/Views/withViews.tsx b/src/containers/Views/withViews.tsx deleted file mode 100644 index e69de29bb..000000000 diff --git a/src/containers/Views/withViewsActions.tsx b/src/containers/Views/withViewsActions.tsx index ed9f16098..4ca548405 100644 --- a/src/containers/Views/withViewsActions.tsx +++ b/src/containers/Views/withViewsActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import {connect} from 'react-redux'; import { fetchView, diff --git a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferEditorField.tsx b/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferEditorField.tsx index ea4533953..d43b5feb4 100644 --- a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferEditorField.tsx +++ b/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferEditorField.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FastField } from 'formik'; import classNames from 'classnames'; diff --git a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFloatingActions.tsx b/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFloatingActions.tsx index c6775e9b4..c9fb1fa98 100644 --- a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFloatingActions.tsx +++ b/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFloatingActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; import { diff --git a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferForm.schema.tsx b/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferForm.schema.tsx index 30f99aa15..f7f1f6e3f 100644 --- a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferForm.schema.tsx +++ b/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferForm.schema.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; import intl from 'react-intl-universal'; import { DATATYPES_LENGTH } from '@/constants/dataTypes'; diff --git a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferForm.tsx b/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferForm.tsx index c7686cec5..27ef70808 100644 --- a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferForm.tsx +++ b/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferForm.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Formik, Form } from 'formik'; diff --git a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormDialog.tsx b/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormDialog.tsx index cef503d71..a817f00f0 100644 --- a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormDialog.tsx +++ b/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormDialog.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; import WarehouseTransferNumberDialog from '@/containers/Dialogs/WarehouseTransferNumberDialog'; diff --git a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormEntriesTable.tsx b/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormEntriesTable.tsx index 1420f72d1..6d1ad2e97 100644 --- a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormEntriesTable.tsx +++ b/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormEntriesTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DataTableEditable } from '@/components'; diff --git a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormFooter.tsx b/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormFooter.tsx index 2042e033e..8f67630f1 100644 --- a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormFooter.tsx +++ b/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormFooter.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import styled from 'styled-components'; diff --git a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormFooterLeft.tsx b/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormFooterLeft.tsx index d3c2e77a0..0ecb61a79 100644 --- a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormFooterLeft.tsx +++ b/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormFooterLeft.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import intl from 'react-intl-universal'; diff --git a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormFooterRight.tsx b/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormFooterRight.tsx deleted file mode 100644 index e69de29bb..000000000 diff --git a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormHeader.tsx b/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormHeader.tsx index 428fa5334..f22071b82 100644 --- a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormHeader.tsx +++ b/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormHeader.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import classNames from 'classnames'; import { CLASSES } from '@/constants/classes'; diff --git a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormHeaderFields.tsx b/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormHeaderFields.tsx index 08f73e83c..b1e99e097 100644 --- a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormHeaderFields.tsx +++ b/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormHeaderFields.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { FormGroup, diff --git a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormPage.tsx b/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormPage.tsx index cb5dd50ba..b284dff8c 100644 --- a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormPage.tsx +++ b/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormPage.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useParams } from 'react-router-dom'; diff --git a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormProvider.tsx b/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormProvider.tsx index a54770c8b..2bc119e41 100644 --- a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormProvider.tsx +++ b/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { createContext } from 'react'; import { isEmpty } from 'lodash'; import { DashboardInsider } from '@/components'; diff --git a/src/containers/WarehouseTransfers/WarehouseTransferForm/components.tsx b/src/containers/WarehouseTransfers/WarehouseTransferForm/components.tsx index 37caa4f82..c7f88cc10 100644 --- a/src/containers/WarehouseTransfers/WarehouseTransferForm/components.tsx +++ b/src/containers/WarehouseTransfers/WarehouseTransferForm/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { chain } from 'lodash'; import { FormikObserver } from '@/components'; diff --git a/src/containers/WarehouseTransfers/WarehouseTransferForm/utils.tsx b/src/containers/WarehouseTransfers/WarehouseTransferForm/utils.tsx index 5c4a6b03f..ee60bc5e8 100644 --- a/src/containers/WarehouseTransfers/WarehouseTransferForm/utils.tsx +++ b/src/containers/WarehouseTransfers/WarehouseTransferForm/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import intl from 'react-intl-universal'; diff --git a/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersActionsBar.tsx b/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersActionsBar.tsx index 9f3950119..3032334c0 100644 --- a/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersActionsBar.tsx +++ b/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersActionsBar.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; import { diff --git a/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersDataTable.tsx b/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersDataTable.tsx index 6bb90113c..2eeefb7ba 100644 --- a/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersDataTable.tsx +++ b/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersDataTable.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; import { diff --git a/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersEmptyStatus.tsx b/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersEmptyStatus.tsx index 0116e9b07..77b3cbb4c 100644 --- a/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersEmptyStatus.tsx +++ b/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersEmptyStatus.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useHistory } from 'react-router-dom'; import { Button, Intent } from '@blueprintjs/core'; diff --git a/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersList.tsx b/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersList.tsx index afc8efa30..83a4c8935 100644 --- a/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersList.tsx +++ b/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersList.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { DashboardPageContent } from '@/components'; diff --git a/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersListProvider.tsx b/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersListProvider.tsx index fe77997cd..ced99c151 100644 --- a/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersListProvider.tsx +++ b/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersListProvider.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { isEmpty } from 'lodash'; import { DashboardInsider } from '@/components/Dashboard'; diff --git a/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersViewTabs.tsx b/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersViewTabs.tsx index e6659f1cd..11a8ff2ed 100644 --- a/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersViewTabs.tsx +++ b/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersViewTabs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { Alignment, Navbar, NavbarGroup } from '@blueprintjs/core'; import { DashboardViewsTabs } from '@/components'; diff --git a/src/containers/WarehouseTransfers/WarehouseTransfersLanding/components.tsx b/src/containers/WarehouseTransfers/WarehouseTransfersLanding/components.tsx index 60df386d8..d8853353b 100644 --- a/src/containers/WarehouseTransfers/WarehouseTransfersLanding/components.tsx +++ b/src/containers/WarehouseTransfers/WarehouseTransfersLanding/components.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { Intent, Tag, Menu, MenuItem, MenuDivider } from '@blueprintjs/core'; diff --git a/src/containers/WarehouseTransfers/WarehouseTransfersLanding/withWarehouseTransfers.tsx b/src/containers/WarehouseTransfers/WarehouseTransfersLanding/withWarehouseTransfers.tsx index dfc700bdb..da0b16e28 100644 --- a/src/containers/WarehouseTransfers/WarehouseTransfersLanding/withWarehouseTransfers.tsx +++ b/src/containers/WarehouseTransfers/WarehouseTransfersLanding/withWarehouseTransfers.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { getWarehouseTransfersTableStateFactory, diff --git a/src/containers/WarehouseTransfers/WarehouseTransfersLanding/withWarehouseTransfersActions.tsx b/src/containers/WarehouseTransfers/WarehouseTransfersLanding/withWarehouseTransfersActions.tsx index bb6ea79bf..457a3d547 100644 --- a/src/containers/WarehouseTransfers/WarehouseTransfersLanding/withWarehouseTransfersActions.tsx +++ b/src/containers/WarehouseTransfers/WarehouseTransfersLanding/withWarehouseTransfersActions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; import { setWarehouseTransferTableState, diff --git a/src/containers/WarehouseTransfers/WarehousesTransfersAlerts.tsx b/src/containers/WarehouseTransfers/WarehousesTransfersAlerts.tsx index c3e73aa47..02b664a5e 100644 --- a/src/containers/WarehouseTransfers/WarehousesTransfersAlerts.tsx +++ b/src/containers/WarehouseTransfers/WarehousesTransfersAlerts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; const WarehouseTransferDeleteAlert = React.lazy( diff --git a/src/containers/WarehouseTransfers/utils.tsx b/src/containers/WarehouseTransfers/utils.tsx index 0dc07d9fa..6f3e21bad 100644 --- a/src/containers/WarehouseTransfers/utils.tsx +++ b/src/containers/WarehouseTransfers/utils.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { find, get } from 'lodash'; diff --git a/src/hooks/dashboard/index.tsx b/src/hooks/dashboard/index.tsx index 376a5d4cc..43a7a45a0 100644 --- a/src/hooks/dashboard/index.tsx +++ b/src/hooks/dashboard/index.tsx @@ -1 +1,2 @@ +// @ts-nocheck export * from './useKeywordShortcuts'; \ No newline at end of file diff --git a/src/hooks/dashboard/useKeywordShortcuts.tsx b/src/hooks/dashboard/useKeywordShortcuts.tsx index 0655f5b81..38e7813c3 100644 --- a/src/hooks/dashboard/useKeywordShortcuts.tsx +++ b/src/hooks/dashboard/useKeywordShortcuts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import keyboardShortcuts from '@/constants/keyboardShortcutsOptions'; import { useAbilitiesFilter } from '../utils/useAbilityContext'; diff --git a/src/hooks/index.tsx b/src/hooks/index.tsx index 47aec372c..e0a0faa50 100644 --- a/src/hooks/index.tsx +++ b/src/hooks/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useRef, useEffect, useMemo } from 'react'; import { useLocation, useHistory } from 'react-router'; import useAutofocus from './useAutofocus'; diff --git a/src/hooks/query/GenericResource/index.tsx b/src/hooks/query/GenericResource/index.tsx index 9bb20b53e..70cfb2f2f 100644 --- a/src/hooks/query/GenericResource/index.tsx +++ b/src/hooks/query/GenericResource/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useRequestQuery } from '../../useQueryRequest'; import { RESOURCES_TYPES } from '@/constants/resourcesTypes'; diff --git a/src/hooks/query/UniversalSearch/UniversalSearch.tsx b/src/hooks/query/UniversalSearch/UniversalSearch.tsx index 590007ea5..48b437811 100644 --- a/src/hooks/query/UniversalSearch/UniversalSearch.tsx +++ b/src/hooks/query/UniversalSearch/UniversalSearch.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { getUniversalSearchBind } from '@/containers/UniversalSearch/utils'; import { useResourceData } from '../GenericResource'; diff --git a/src/hooks/query/accounts.tsx b/src/hooks/query/accounts.tsx index 17de22f90..b3a9d9c48 100644 --- a/src/hooks/query/accounts.tsx +++ b/src/hooks/query/accounts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useMutation, useQueryClient } from 'react-query'; import { useRequestQuery } from '../useQueryRequest'; import useApiRequest from '../useRequest'; diff --git a/src/hooks/query/authentication.tsx b/src/hooks/query/authentication.tsx index e038ae477..e00dd02ae 100644 --- a/src/hooks/query/authentication.tsx +++ b/src/hooks/query/authentication.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useMutation } from 'react-query'; import useApiRequest from '../useRequest'; import { setCookie } from '../../utils'; diff --git a/src/hooks/query/base.tsx b/src/hooks/query/base.tsx index 091447f76..a3a2ccc66 100644 --- a/src/hooks/query/base.tsx +++ b/src/hooks/query/base.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck // Query client config. export const queryConfig = { defaultOptions: { diff --git a/src/hooks/query/bills.tsx b/src/hooks/query/bills.tsx index 76f62eda4..4abf97610 100644 --- a/src/hooks/query/bills.tsx +++ b/src/hooks/query/bills.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useQueryClient, useMutation } from 'react-query'; import { useRequestQuery } from '../useQueryRequest'; import { transformPagination } from '@/utils'; diff --git a/src/hooks/query/branches.tsx b/src/hooks/query/branches.tsx index f6567c7c6..9279caeba 100644 --- a/src/hooks/query/branches.tsx +++ b/src/hooks/query/branches.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useQueryClient, useMutation } from 'react-query'; import { useRequestQuery } from '../useQueryRequest'; import useApiRequest from '../useRequest'; diff --git a/src/hooks/query/cashflowAccounts.tsx b/src/hooks/query/cashflowAccounts.tsx index df93ab6ee..c7cc5d58b 100644 --- a/src/hooks/query/cashflowAccounts.tsx +++ b/src/hooks/query/cashflowAccounts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useMutation, useQueryClient, useInfiniteQuery } from 'react-query'; import { useRequestQuery } from '../useQueryRequest'; import useApiRequest from '../useRequest'; diff --git a/src/hooks/query/contacts.tsx b/src/hooks/query/contacts.tsx index 2634c4060..5a554034a 100644 --- a/src/hooks/query/contacts.tsx +++ b/src/hooks/query/contacts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useMutation, useQueryClient } from 'react-query'; import useApiRequest from '../useRequest'; import { useQueryTenant } from '../useQueryRequest'; diff --git a/src/hooks/query/creditNote.tsx b/src/hooks/query/creditNote.tsx index 47a48fe56..dfacc8348 100644 --- a/src/hooks/query/creditNote.tsx +++ b/src/hooks/query/creditNote.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useQueryClient, useMutation } from 'react-query'; import { useRequestQuery } from '../useQueryRequest'; import { transformPagination } from '@/utils'; diff --git a/src/hooks/query/currencies.tsx b/src/hooks/query/currencies.tsx index 018c0c2ea..187b78ad7 100644 --- a/src/hooks/query/currencies.tsx +++ b/src/hooks/query/currencies.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useMutation, useQueryClient } from 'react-query'; import { useRequestQuery } from '../useQueryRequest'; import useApiRequest from '../useRequest'; diff --git a/src/hooks/query/customers.tsx b/src/hooks/query/customers.tsx index 25a352339..e6c543802 100644 --- a/src/hooks/query/customers.tsx +++ b/src/hooks/query/customers.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useMutation, useQueryClient } from 'react-query'; import { useRequestQuery } from '../useQueryRequest'; import { transformPagination } from '@/utils'; diff --git a/src/hooks/query/estimates.tsx b/src/hooks/query/estimates.tsx index 8a9f29cf8..8bb3c2731 100644 --- a/src/hooks/query/estimates.tsx +++ b/src/hooks/query/estimates.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useQueryClient, useMutation } from 'react-query'; import { useRequestQuery } from '../useQueryRequest'; import useApiRequest from '../useRequest'; diff --git a/src/hooks/query/exchangeRates.tsx b/src/hooks/query/exchangeRates.tsx index f328be240..f38b66737 100644 --- a/src/hooks/query/exchangeRates.tsx +++ b/src/hooks/query/exchangeRates.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useMutation, useQueryClient } from 'react-query'; import { defaultTo } from 'lodash'; import { useQueryTenant } from '../useQueryRequest'; diff --git a/src/hooks/query/expenses.tsx b/src/hooks/query/expenses.tsx index a8fbccb0e..28d7bbbce 100644 --- a/src/hooks/query/expenses.tsx +++ b/src/hooks/query/expenses.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useMutation, useQueryClient } from 'react-query'; import useApiRequest from '../useRequest'; import { useRequestQuery } from '../useQueryRequest'; diff --git a/src/hooks/query/financialReports.tsx b/src/hooks/query/financialReports.tsx index 9da0733e5..6a9f385a9 100644 --- a/src/hooks/query/financialReports.tsx +++ b/src/hooks/query/financialReports.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useRequestQuery } from '../useQueryRequest'; import { trialBalanceSheetReducer, diff --git a/src/hooks/query/index.tsx b/src/hooks/query/index.tsx index 4fe11e9b7..0a7f4feff 100644 --- a/src/hooks/query/index.tsx +++ b/src/hooks/query/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export * from './authentication'; export * from './accounts'; export * from './views'; diff --git a/src/hooks/query/inventoryAdjustments.tsx b/src/hooks/query/inventoryAdjustments.tsx index 645cb7882..b1c9afb65 100644 --- a/src/hooks/query/inventoryAdjustments.tsx +++ b/src/hooks/query/inventoryAdjustments.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useMutation, useQueryClient } from 'react-query'; import { useRequestQuery } from '../useQueryRequest'; import { transformPagination } from '@/utils'; diff --git a/src/hooks/query/invite.tsx b/src/hooks/query/invite.tsx index b1b7960ff..7cc3c7e36 100644 --- a/src/hooks/query/invite.tsx +++ b/src/hooks/query/invite.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useMutation } from 'react-query'; import { useRequestQuery } from '../useQueryRequest'; import useApiRequest from '../useRequest'; diff --git a/src/hooks/query/invoices.tsx b/src/hooks/query/invoices.tsx index 0aafaa0db..6967c52f1 100644 --- a/src/hooks/query/invoices.tsx +++ b/src/hooks/query/invoices.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useQueryClient, useMutation } from 'react-query'; import { useRequestQuery } from '../useQueryRequest'; import { transformPagination } from '@/utils'; diff --git a/src/hooks/query/items.tsx b/src/hooks/query/items.tsx index e6a191ac2..0f303cc74 100644 --- a/src/hooks/query/items.tsx +++ b/src/hooks/query/items.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useMutation, useQueryClient } from 'react-query'; import { transformPagination, transformResponse } from '@/utils'; import { useRequestQuery } from '../useQueryRequest'; diff --git a/src/hooks/query/itemsCategories.tsx b/src/hooks/query/itemsCategories.tsx index a31b52483..91d32f98b 100644 --- a/src/hooks/query/itemsCategories.tsx +++ b/src/hooks/query/itemsCategories.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useMutation, useQueryClient } from 'react-query'; import { useRequestQuery } from '../useQueryRequest'; import useApiRequest from '../useRequest'; diff --git a/src/hooks/query/jobs.tsx b/src/hooks/query/jobs.tsx index e54178ae2..37fd7dab6 100644 --- a/src/hooks/query/jobs.tsx +++ b/src/hooks/query/jobs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useRequestQuery } from '../useQueryRequest'; /** diff --git a/src/hooks/query/landedCost.tsx b/src/hooks/query/landedCost.tsx index 57dbcfe17..72a91ae7d 100644 --- a/src/hooks/query/landedCost.tsx +++ b/src/hooks/query/landedCost.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useQueryClient, useMutation } from 'react-query'; import useApiRequest from '../useRequest'; import { useRequestQuery } from '../useQueryRequest'; diff --git a/src/hooks/query/manualJournals.tsx b/src/hooks/query/manualJournals.tsx index b6d5c6c71..b5f7d418b 100644 --- a/src/hooks/query/manualJournals.tsx +++ b/src/hooks/query/manualJournals.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useMutation, useQueryClient } from 'react-query'; import { useRequestQuery } from '../useQueryRequest'; import { transformPagination } from '@/utils'; diff --git a/src/hooks/query/misc.tsx b/src/hooks/query/misc.tsx index a8cca62b8..f94f68ace 100644 --- a/src/hooks/query/misc.tsx +++ b/src/hooks/query/misc.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useRequestQuery } from '../useQueryRequest'; /** diff --git a/src/hooks/query/organization.tsx b/src/hooks/query/organization.tsx index 55abdc5c2..aea3ab96c 100644 --- a/src/hooks/query/organization.tsx +++ b/src/hooks/query/organization.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useMutation, useQueryClient } from 'react-query'; import { batch } from 'react-redux'; import t from './types'; diff --git a/src/hooks/query/paymentMades.tsx b/src/hooks/query/paymentMades.tsx index ee69e00fc..0af1b2ebf 100644 --- a/src/hooks/query/paymentMades.tsx +++ b/src/hooks/query/paymentMades.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useMutation, useQueryClient } from 'react-query'; import { useRequestQuery } from '../useQueryRequest'; import { transformPagination } from '@/utils'; diff --git a/src/hooks/query/paymentReceives.tsx b/src/hooks/query/paymentReceives.tsx index 0e1cf84fb..49d53ad67 100644 --- a/src/hooks/query/paymentReceives.tsx +++ b/src/hooks/query/paymentReceives.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useMutation, useQueryClient } from 'react-query'; import { useRequestQuery } from '../useQueryRequest'; import useApiRequest from '../useRequest'; diff --git a/src/hooks/query/receipts.tsx b/src/hooks/query/receipts.tsx index f99d07dd7..6e2a28b3a 100644 --- a/src/hooks/query/receipts.tsx +++ b/src/hooks/query/receipts.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useQueryClient, useMutation } from 'react-query'; import { useRequestQuery } from '../useQueryRequest'; import { useRequestPdf } from '../utils'; diff --git a/src/hooks/query/roles.tsx b/src/hooks/query/roles.tsx index 145e59822..0de8ebffc 100644 --- a/src/hooks/query/roles.tsx +++ b/src/hooks/query/roles.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useMutation, useQueryClient } from 'react-query'; import { useRequestQuery } from '../useQueryRequest'; import useApiRequest from '../useRequest'; diff --git a/src/hooks/query/settings.tsx b/src/hooks/query/settings.tsx index db7e044a7..2a2029214 100644 --- a/src/hooks/query/settings.tsx +++ b/src/hooks/query/settings.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useMutation, useQueryClient } from 'react-query'; import { useRequestQuery } from '../useQueryRequest'; import useApiRequest from '../useRequest'; diff --git a/src/hooks/query/subscriptions.tsx b/src/hooks/query/subscriptions.tsx index ebab2893e..38d601ea5 100644 --- a/src/hooks/query/subscriptions.tsx +++ b/src/hooks/query/subscriptions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useEffect } from "react" import { useMutation, useQueryClient } from "react-query"; import { useRequestQuery } from "../useQueryRequest"; diff --git a/src/hooks/query/transactionsLocking.tsx b/src/hooks/query/transactionsLocking.tsx index cec3820ce..0be24a26a 100644 --- a/src/hooks/query/transactionsLocking.tsx +++ b/src/hooks/query/transactionsLocking.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useQueryClient, useMutation } from 'react-query'; import { useRequestQuery } from '../useQueryRequest'; import { transformPagination } from '@/utils'; diff --git a/src/hooks/query/types.tsx b/src/hooks/query/types.tsx index 65eab819c..696aa68c9 100644 --- a/src/hooks/query/types.tsx +++ b/src/hooks/query/types.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck const ACCOUNTS = { ACCOUNT: 'ACCOUNT', ACCOUNT_TRANSACTION: 'ACCOUNT_TRANSACTION', diff --git a/src/hooks/query/users.tsx b/src/hooks/query/users.tsx index 28dc5951e..73bcf0691 100644 --- a/src/hooks/query/users.tsx +++ b/src/hooks/query/users.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useEffect } from 'react'; import { useMutation, useQueryClient } from 'react-query'; import { useQueryTenant, useRequestQuery } from '../useQueryRequest'; diff --git a/src/hooks/query/vendorCredit.tsx b/src/hooks/query/vendorCredit.tsx index 8eeb2b28a..a385ed1b4 100644 --- a/src/hooks/query/vendorCredit.tsx +++ b/src/hooks/query/vendorCredit.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useQueryClient, useMutation } from 'react-query'; import { useRequestQuery } from '../useQueryRequest'; import { transformPagination } from '@/utils'; diff --git a/src/hooks/query/vendors.tsx b/src/hooks/query/vendors.tsx index a4d230350..7716d918d 100644 --- a/src/hooks/query/vendors.tsx +++ b/src/hooks/query/vendors.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useMutation, useQueryClient } from 'react-query'; import t from './types'; import { transformPagination } from '@/utils'; diff --git a/src/hooks/query/views.tsx b/src/hooks/query/views.tsx index 42e2b4893..228d1a48c 100644 --- a/src/hooks/query/views.tsx +++ b/src/hooks/query/views.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useRequestQuery } from '../useQueryRequest'; /** diff --git a/src/hooks/query/warehouses.tsx b/src/hooks/query/warehouses.tsx index ca2ec5ba5..4cfebedd3 100644 --- a/src/hooks/query/warehouses.tsx +++ b/src/hooks/query/warehouses.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useQueryClient, useMutation } from 'react-query'; import { transformPagination } from '@/utils'; import { useRequestQuery } from '../useQueryRequest'; diff --git a/src/hooks/query/warehousesTransfers.tsx b/src/hooks/query/warehousesTransfers.tsx index 7bcf1d5ad..5d12f19fd 100644 --- a/src/hooks/query/warehousesTransfers.tsx +++ b/src/hooks/query/warehousesTransfers.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useQueryClient, useMutation } from 'react-query'; import { transformPagination } from '@/utils'; import { useRequestQuery } from '../useQueryRequest'; diff --git a/src/hooks/state/authentication.tsx b/src/hooks/state/authentication.tsx index 4fe29421e..4fb20bf6c 100644 --- a/src/hooks/state/authentication.tsx +++ b/src/hooks/state/authentication.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useDispatch, useSelector } from 'react-redux'; import { useCallback } from 'react'; import { isAuthenticated } from '@/store/authentication/authentication.reducer'; diff --git a/src/hooks/state/dashboard.tsx b/src/hooks/state/dashboard.tsx index e893ff5b4..74cdf295e 100644 --- a/src/hooks/state/dashboard.tsx +++ b/src/hooks/state/dashboard.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useCallback } from 'react'; import { useDispatch, useSelector } from 'react-redux'; import { createSelector } from 'reselect'; diff --git a/src/hooks/state/feature.tsx b/src/hooks/state/feature.tsx index 61fc83477..feeabc5bf 100644 --- a/src/hooks/state/feature.tsx +++ b/src/hooks/state/feature.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useSelector, useDispatch } from 'react-redux'; import { createSelector } from 'reselect'; diff --git a/src/hooks/state/globalErrors.tsx b/src/hooks/state/globalErrors.tsx index 308e9bddd..32c518f96 100644 --- a/src/hooks/state/globalErrors.tsx +++ b/src/hooks/state/globalErrors.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useCallback } from 'react'; import { useSelector, useDispatch } from "react-redux"; import { setGlobalErrors } from '@/store/globalErrors/globalErrors.actions'; diff --git a/src/hooks/state/index.tsx b/src/hooks/state/index.tsx index 0b5bb3434..e30a9d3fc 100644 --- a/src/hooks/state/index.tsx +++ b/src/hooks/state/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export * from './dashboard'; export * from './authentication'; export * from './globalErrors'; diff --git a/src/hooks/state/organizations.tsx b/src/hooks/state/organizations.tsx index b4bdd4c70..6b2ff81da 100644 --- a/src/hooks/state/organizations.tsx +++ b/src/hooks/state/organizations.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useCallback } from "react"; import { useSelector, useDispatch } from "react-redux"; import { setOrganizations } from '@/store/organizations/organizations.actions'; diff --git a/src/hooks/state/settings.tsx b/src/hooks/state/settings.tsx index b4df353c8..15b4e445b 100644 --- a/src/hooks/state/settings.tsx +++ b/src/hooks/state/settings.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useCallback } from 'react'; import { useDispatch, useSelector } from 'react-redux'; import { setSettings } from '@/store/settings/settings.actions'; diff --git a/src/hooks/state/subscriptions.tsx b/src/hooks/state/subscriptions.tsx index ff190cfcc..848375b03 100644 --- a/src/hooks/state/subscriptions.tsx +++ b/src/hooks/state/subscriptions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useCallback } from "react" import { useDispatch, useSelector } from "react-redux"; import { setSubscriptions } from '@/store/subscription/subscription.actions'; diff --git a/src/hooks/useAutofocus.tsx b/src/hooks/useAutofocus.tsx index 42fc3615c..529da56df 100644 --- a/src/hooks/useAutofocus.tsx +++ b/src/hooks/useAutofocus.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useRef, useEffect } from 'react'; export default function useAutofocus(focus = true) { diff --git a/src/hooks/useMedia.tsx b/src/hooks/useMedia.tsx index ccd4bcae8..b67a08774 100644 --- a/src/hooks/useMedia.tsx +++ b/src/hooks/useMedia.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React, { useState, useRef, useCallback } from 'react'; import { ProgressBar, Classes, Intent } from '@blueprintjs/core'; import classNames from 'classnames'; diff --git a/src/hooks/useQueryRequest.tsx b/src/hooks/useQueryRequest.tsx index 9b4c0a49a..d1cfc7466 100644 --- a/src/hooks/useQueryRequest.tsx +++ b/src/hooks/useQueryRequest.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useQuery } from 'react-query'; import { castArray, defaultTo } from 'lodash'; import { useAuthOrganizationId } from './state'; diff --git a/src/hooks/useQueryString.ts b/src/hooks/useQueryString.ts index 444a8846c..412154288 100644 --- a/src/hooks/useQueryString.ts +++ b/src/hooks/useQueryString.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import { Dispatch, SetStateAction, useEffect, useRef, useState } from 'react'; import { ParseOptions, diff --git a/src/hooks/useRequest.tsx b/src/hooks/useRequest.tsx index 7f8ecb2ea..c092f1faf 100644 --- a/src/hooks/useRequest.tsx +++ b/src/hooks/useRequest.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import axios from 'axios'; import { diff --git a/src/hooks/useRequestPdf.tsx b/src/hooks/useRequestPdf.tsx index a82e9ccba..22df2385e 100644 --- a/src/hooks/useRequestPdf.tsx +++ b/src/hooks/useRequestPdf.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import useApiRequest from './useRequest'; diff --git a/src/hooks/utils/index.tsx b/src/hooks/utils/index.tsx index 92dbfae09..c3e3eb119 100644 --- a/src/hooks/utils/index.tsx +++ b/src/hooks/utils/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export * from './useLocalStorage'; export * from './usePrevious'; export * from './useUpdateEffect'; diff --git a/src/hooks/utils/useAbilityContext.tsx b/src/hooks/utils/useAbilityContext.tsx index f5c54beb9..cf9524b94 100644 --- a/src/hooks/utils/useAbilityContext.tsx +++ b/src/hooks/utils/useAbilityContext.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import { useAbility } from '@casl/react'; import { AbilityContext } from '@/components'; diff --git a/src/hooks/utils/useCustomCompareEffect.ts b/src/hooks/utils/useCustomCompareEffect.ts index c67e6488a..fda248ade 100644 --- a/src/hooks/utils/useCustomCompareEffect.ts +++ b/src/hooks/utils/useCustomCompareEffect.ts @@ -37,7 +37,6 @@ const useCustomCompareEffect = ( if (!ref.current || !depsEqual(deps, ref.current)) { ref.current = deps; } - useEffect(effect, ref.current); }; diff --git a/src/hooks/utils/useDeepCompareEffect.ts b/src/hooks/utils/useDeepCompareEffect.ts index 8504cc09f..155210d0c 100644 --- a/src/hooks/utils/useDeepCompareEffect.ts +++ b/src/hooks/utils/useDeepCompareEffect.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import { DependencyList, EffectCallback } from 'react'; import isDeepEqualReact from 'fast-deep-equal/react'; import { useCustomCompareEffect } from './useCustomCompareEffect'; diff --git a/src/hooks/utils/useIntersectionObserver.tsx b/src/hooks/utils/useIntersectionObserver.tsx index a3958131e..2a442982c 100644 --- a/src/hooks/utils/useIntersectionObserver.tsx +++ b/src/hooks/utils/useIntersectionObserver.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; export function useIntersectionObserver({ diff --git a/src/hooks/utils/useLocalStorage.tsx b/src/hooks/utils/useLocalStorage.tsx index 990e90c17..059280a96 100644 --- a/src/hooks/utils/useLocalStorage.tsx +++ b/src/hooks/utils/useLocalStorage.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; // Hook diff --git a/src/hooks/utils/usePrevious.tsx b/src/hooks/utils/usePrevious.tsx index f078f0509..d54aad428 100644 --- a/src/hooks/utils/usePrevious.tsx +++ b/src/hooks/utils/usePrevious.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useRef, useEffect } from 'react'; diff --git a/src/hooks/utils/useRequestPdf.tsx b/src/hooks/utils/useRequestPdf.tsx index abe49acc9..32e6ad881 100644 --- a/src/hooks/utils/useRequestPdf.tsx +++ b/src/hooks/utils/useRequestPdf.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import useApiRequest from '../useRequest'; diff --git a/src/hooks/utils/useUpdateEffect.tsx b/src/hooks/utils/useUpdateEffect.tsx index b7b9d4bfc..d10e5f4da 100644 --- a/src/hooks/utils/useUpdateEffect.tsx +++ b/src/hooks/utils/useUpdateEffect.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useRef, useEffect } from 'react'; /** diff --git a/src/hooks/utils/useWatch.tsx b/src/hooks/utils/useWatch.tsx index 519b28ed5..5acedcdb1 100644 --- a/src/hooks/utils/useWatch.tsx +++ b/src/hooks/utils/useWatch.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { useEffect, useRef } from 'react'; export function useWatch(callback, argument) { diff --git a/src/hooks/utils/useWhen.tsx b/src/hooks/utils/useWhen.tsx index b72c23fe3..ba26ba6aa 100644 --- a/src/hooks/utils/useWhen.tsx +++ b/src/hooks/utils/useWhen.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; export function useWhen(condition, callback) { diff --git a/src/index.tsx b/src/index.tsx index 737e01eb3..662f86c65 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import ReactDOM from 'react-dom'; import { Provider } from 'react-redux'; diff --git a/src/lang/ar/locale.tsx b/src/lang/ar/locale.tsx index bd7d5db24..7de41da6c 100644 --- a/src/lang/ar/locale.tsx +++ b/src/lang/ar/locale.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck // Based on https://github.com/jquense/yup/blob/2973d0a/src/locale.js import printValue from '../printValue'; diff --git a/src/lang/en/authentication.tsx b/src/lang/en/authentication.tsx index b5ecef334..d9ed763b9 100644 --- a/src/lang/en/authentication.tsx +++ b/src/lang/en/authentication.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { diff --git a/src/lang/en/locale.tsx b/src/lang/en/locale.tsx index 8ebf81b3e..5bcf630a1 100644 --- a/src/lang/en/locale.tsx +++ b/src/lang/en/locale.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import printValue from '../printValue'; export const locale = { diff --git a/src/lang/printValue.tsx b/src/lang/printValue.tsx index bc0bdd2fe..f540aec41 100644 --- a/src/lang/printValue.tsx +++ b/src/lang/printValue.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck const toString = Object.prototype.toString; const errorToString = Error.prototype.toString; const regExpToString = RegExp.prototype.toString; diff --git a/src/routes/authentication.tsx b/src/routes/authentication.tsx index 609906be4..77b1fce6f 100644 --- a/src/routes/authentication.tsx +++ b/src/routes/authentication.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import LazyLoader from '@/components/LazyLoader'; const BASE_URL = '/auth'; diff --git a/src/routes/dashboard.tsx b/src/routes/dashboard.tsx index 2bb2e2049..ed66b4373 100644 --- a/src/routes/dashboard.tsx +++ b/src/routes/dashboard.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { lazy } from 'react'; import intl from 'react-intl-universal'; import { RESOURCES_TYPES } from '@/constants/resourcesTypes'; diff --git a/src/routes/preferences.tsx b/src/routes/preferences.tsx index 45f8599ac..775efcf82 100644 --- a/src/routes/preferences.tsx +++ b/src/routes/preferences.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import General from '@/containers/Preferences/General/General'; import Users from '../containers/Preferences/Users/Users'; import Roles from '../containers/Preferences/Users/Roles/RolesForm/RolesFormPage'; diff --git a/src/routes/preferencesTabs.tsx b/src/routes/preferencesTabs.tsx index 32b377899..fd772fb38 100644 --- a/src/routes/preferencesTabs.tsx +++ b/src/routes/preferencesTabs.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck // import AccountsCustomFields from "containers/Preferences/AccountsCustomFields"; import UsersList from '../containers/Preferences/Users/UsersList'; import RolesList from '../containers/Preferences/Users/Roles/RolesLanding/RolesList'; diff --git a/src/routes/register.tsx b/src/routes/register.tsx index 2ad5590d5..d0a893d86 100644 --- a/src/routes/register.tsx +++ b/src/routes/register.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import LazyLoader from '@/components/LazyLoader'; export default [ diff --git a/src/serviceWorker.tsx b/src/serviceWorker.tsx index c4838eb55..f8f394849 100644 --- a/src/serviceWorker.tsx +++ b/src/serviceWorker.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck // This optional code is used to register a service worker. // register() is not called by default. diff --git a/src/services/ApiService.tsx b/src/services/ApiService.tsx index d04108983..8a16beb01 100644 --- a/src/services/ApiService.tsx +++ b/src/services/ApiService.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import axios from '@/services/axios'; export default { diff --git a/src/services/NamedRoutes.tsx b/src/services/NamedRoutes.tsx index e8f4b820e..0b386444d 100644 --- a/src/services/NamedRoutes.tsx +++ b/src/services/NamedRoutes.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import dashboard from '@/routes/dashboard'; diff --git a/src/services/RemoteDataBinding.tsx b/src/services/RemoteDataBinding.tsx index 58afd1c94..ba417cfd8 100644 --- a/src/services/RemoteDataBinding.tsx +++ b/src/services/RemoteDataBinding.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import ApiService from '@/services/ApiService'; export default class RemoteDataBinding { diff --git a/src/services/axios.tsx b/src/services/axios.tsx index 556d4351b..2cbc6e68e 100644 --- a/src/services/axios.tsx +++ b/src/services/axios.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import axios from 'axios'; import { store } from '@/store/createStore'; const http = axios.create(); diff --git a/src/services/yup.tsx b/src/services/yup.tsx index 410c3c9e0..9cb520a7f 100644 --- a/src/services/yup.tsx +++ b/src/services/yup.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import * as Yup from 'yup'; Yup.addMethod(Yup.string, 'digits', function () { diff --git a/src/static/json/icons.tsx b/src/static/json/icons.tsx index 45f774300..dfa30b19e 100644 --- a/src/static/json/icons.tsx +++ b/src/static/json/icons.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { 'balance-scale': { path: [ diff --git a/src/store/Bills/bills.actions.tsx b/src/store/Bills/bills.actions.tsx index 0ebeed857..21913e64a 100644 --- a/src/store/Bills/bills.actions.tsx +++ b/src/store/Bills/bills.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import t from '@/store/types'; export const setBillsTableState = (queries) => { diff --git a/src/store/Bills/bills.reducer.tsx b/src/store/Bills/bills.reducer.tsx index 73adee1c7..1a04aa795 100644 --- a/src/store/Bills/bills.reducer.tsx +++ b/src/store/Bills/bills.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createReducer } from '@reduxjs/toolkit'; import { persistReducer, purgeStoredState } from 'redux-persist'; import storage from 'redux-persist/lib/storage'; diff --git a/src/store/Bills/bills.selectors.tsx b/src/store/Bills/bills.selectors.tsx index 7f04b2b66..7c357c96c 100644 --- a/src/store/Bills/bills.selectors.tsx +++ b/src/store/Bills/bills.selectors.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { isEqual } from 'lodash'; import { paginationLocationQuery } from '@/store/selectors'; diff --git a/src/store/Bills/bills.type.tsx b/src/store/Bills/bills.type.tsx index da4189522..21a5c38b6 100644 --- a/src/store/Bills/bills.type.tsx +++ b/src/store/Bills/bills.type.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { BILLS_TABLE_STATE_SET: 'BILLS/TABLE_STATE_SET', diff --git a/src/store/CashflowAccounts/CashflowAccounts.actions.tsx b/src/store/CashflowAccounts/CashflowAccounts.actions.tsx index 6023b53f4..0b2b71a2d 100644 --- a/src/store/CashflowAccounts/CashflowAccounts.actions.tsx +++ b/src/store/CashflowAccounts/CashflowAccounts.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import t from '@/store/types'; /** diff --git a/src/store/CashflowAccounts/CashflowAccounts.reducer.tsx b/src/store/CashflowAccounts/CashflowAccounts.reducer.tsx index 0963f7afd..e626abf12 100644 --- a/src/store/CashflowAccounts/CashflowAccounts.reducer.tsx +++ b/src/store/CashflowAccounts/CashflowAccounts.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createReducer } from '@reduxjs/toolkit'; import { persistReducer, purgeStoredState } from 'redux-persist'; import storage from 'redux-persist/lib/storage'; diff --git a/src/store/CashflowAccounts/CashflowAccounts.selectors.tsx b/src/store/CashflowAccounts/CashflowAccounts.selectors.tsx index c3d5671b7..2dbb822f9 100644 --- a/src/store/CashflowAccounts/CashflowAccounts.selectors.tsx +++ b/src/store/CashflowAccounts/CashflowAccounts.selectors.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { paginationLocationQuery } from '@/store/selectors'; import { createDeepEqualSelector } from '@/utils'; diff --git a/src/store/CashflowAccounts/CashflowAccounts.types.tsx b/src/store/CashflowAccounts/CashflowAccounts.types.tsx index 38abc5e2d..c06e80334 100644 --- a/src/store/CashflowAccounts/CashflowAccounts.types.tsx +++ b/src/store/CashflowAccounts/CashflowAccounts.types.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { CASHFLOW_ACCOUNTS_TABLE_STATE_SET: 'CASHFLOW_ACCOUNTS/TABLE_STATE_SET', diff --git a/src/store/CreditNote/creditNote.actions.tsx b/src/store/CreditNote/creditNote.actions.tsx index 42efb39a1..2841cceb7 100644 --- a/src/store/CreditNote/creditNote.actions.tsx +++ b/src/store/CreditNote/creditNote.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import t from '@/store/types'; export const setCreditNoteTableState = (queries) => { diff --git a/src/store/CreditNote/creditNote.reducer.tsx b/src/store/CreditNote/creditNote.reducer.tsx index 32d4bd01f..58fc7cca0 100644 --- a/src/store/CreditNote/creditNote.reducer.tsx +++ b/src/store/CreditNote/creditNote.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createReducer } from '@reduxjs/toolkit'; import { persistReducer, purgeStoredState } from 'redux-persist'; import storage from 'redux-persist/lib/storage'; diff --git a/src/store/CreditNote/creditNote.selector.tsx b/src/store/CreditNote/creditNote.selector.tsx index 2048a2585..644b08faa 100644 --- a/src/store/CreditNote/creditNote.selector.tsx +++ b/src/store/CreditNote/creditNote.selector.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { isEqual } from 'lodash'; import { paginationLocationQuery } from '@/store/selectors'; import { createDeepEqualSelector } from '@/utils'; diff --git a/src/store/CreditNote/creditNote.type.tsx b/src/store/CreditNote/creditNote.type.tsx index 85585381a..b852ea22e 100644 --- a/src/store/CreditNote/creditNote.type.tsx +++ b/src/store/CreditNote/creditNote.type.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { CREDIT_NOTES_TABLE_STATE_SET: 'CREDIT_NOTES/TABLE_STATE_SET', CREDIT_NOTES_TABLE_STATE_RESET: 'CREDIT_NOTE/TABLE_STATE_RESET', diff --git a/src/store/Estimate/estimates.actions.tsx b/src/store/Estimate/estimates.actions.tsx index ab4a29fd2..e5328f140 100644 --- a/src/store/Estimate/estimates.actions.tsx +++ b/src/store/Estimate/estimates.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import t from '@/store/types'; export const setEstimatesTableState = (queries) => { diff --git a/src/store/Estimate/estimates.reducer.tsx b/src/store/Estimate/estimates.reducer.tsx index 9ed8572b4..323868be1 100644 --- a/src/store/Estimate/estimates.reducer.tsx +++ b/src/store/Estimate/estimates.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createReducer } from '@reduxjs/toolkit'; import { persistReducer, purgeStoredState } from 'redux-persist'; import storage from 'redux-persist/lib/storage'; diff --git a/src/store/Estimate/estimates.selectors.tsx b/src/store/Estimate/estimates.selectors.tsx index 7de9dd638..b12cd097c 100644 --- a/src/store/Estimate/estimates.selectors.tsx +++ b/src/store/Estimate/estimates.selectors.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { isEqual } from 'lodash'; import { createDeepEqualSelector } from '@/utils'; import { paginationLocationQuery } from '@/store/selectors'; diff --git a/src/store/Estimate/estimates.types.tsx b/src/store/Estimate/estimates.types.tsx index bd11d0fa7..7fe5e5da8 100644 --- a/src/store/Estimate/estimates.types.tsx +++ b/src/store/Estimate/estimates.types.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { ESTIMATES_TABLE_STATE_SET: 'ESTIMATES/TABLE_STATE_SET', ESTIMATES_TABLE_STATE_RESET: 'ESTIMATES/TABLE_STATE_RESET', diff --git a/src/store/ExchangeRate/exchange.actions.tsx b/src/store/ExchangeRate/exchange.actions.tsx index 8222531de..0597e3091 100644 --- a/src/store/ExchangeRate/exchange.actions.tsx +++ b/src/store/ExchangeRate/exchange.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import t from '@/store/types'; export const setExchangeRateTableState = (queries) => { diff --git a/src/store/ExchangeRate/exchange.reducer.tsx b/src/store/ExchangeRate/exchange.reducer.tsx index a3e5be2fb..99ada5157 100644 --- a/src/store/ExchangeRate/exchange.reducer.tsx +++ b/src/store/ExchangeRate/exchange.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createReducer } from '@reduxjs/toolkit'; import { createTableStateReducers } from '@/store/tableState.reducer'; diff --git a/src/store/ExchangeRate/exchange.selector.tsx b/src/store/ExchangeRate/exchange.selector.tsx index b8dbdb3a2..570d60dbe 100644 --- a/src/store/ExchangeRate/exchange.selector.tsx +++ b/src/store/ExchangeRate/exchange.selector.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createDeepEqualSelector } from '@/utils'; import { paginationLocationQuery } from '@/store/selectors'; diff --git a/src/store/ExchangeRate/exchange.type.tsx b/src/store/ExchangeRate/exchange.type.tsx index b5a99dd87..caaaaca31 100644 --- a/src/store/ExchangeRate/exchange.type.tsx +++ b/src/store/ExchangeRate/exchange.type.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { EXCHANGE_RATES_TABLE_STATE_SET: 'EXCHANGE_RATES/TABLE_STATE_SET', }; diff --git a/src/store/Invoice/invoices.actions.tsx b/src/store/Invoice/invoices.actions.tsx index 8762946bc..95f5ed974 100644 --- a/src/store/Invoice/invoices.actions.tsx +++ b/src/store/Invoice/invoices.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import t from '@/store/types'; export const setInvoicesTableState = (queries) => { diff --git a/src/store/Invoice/invoices.reducer.tsx b/src/store/Invoice/invoices.reducer.tsx index 4567f5e68..fd4533fe6 100644 --- a/src/store/Invoice/invoices.reducer.tsx +++ b/src/store/Invoice/invoices.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createReducer } from '@reduxjs/toolkit'; import { persistReducer, purgeStoredState } from 'redux-persist'; import storage from 'redux-persist/lib/storage'; diff --git a/src/store/Invoice/invoices.selector.tsx b/src/store/Invoice/invoices.selector.tsx index f7c74f257..5987e7a2f 100644 --- a/src/store/Invoice/invoices.selector.tsx +++ b/src/store/Invoice/invoices.selector.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { isEqual } from 'lodash'; import { paginationLocationQuery } from '@/store/selectors'; import { createDeepEqualSelector } from '@/utils'; diff --git a/src/store/Invoice/invoices.types.tsx b/src/store/Invoice/invoices.types.tsx index 3b979d112..429853aad 100644 --- a/src/store/Invoice/invoices.types.tsx +++ b/src/store/Invoice/invoices.types.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { INVOICES_TABLE_STATE_SET: 'INVOICES/TABLE_STATE_SET', diff --git a/src/store/PaymentMades/paymentMades.actions.tsx b/src/store/PaymentMades/paymentMades.actions.tsx index b82392348..40977745a 100644 --- a/src/store/PaymentMades/paymentMades.actions.tsx +++ b/src/store/PaymentMades/paymentMades.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import t from '@/store/types'; export const setPaymentMadesTableState = (queries) => { diff --git a/src/store/PaymentMades/paymentMades.reducer.tsx b/src/store/PaymentMades/paymentMades.reducer.tsx index 4e1711c52..83e7a63e4 100644 --- a/src/store/PaymentMades/paymentMades.reducer.tsx +++ b/src/store/PaymentMades/paymentMades.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createReducer } from '@reduxjs/toolkit'; import { persistReducer, purgeStoredState } from 'redux-persist'; import storage from 'redux-persist/lib/storage'; diff --git a/src/store/PaymentMades/paymentMades.selector.tsx b/src/store/PaymentMades/paymentMades.selector.tsx index 3f3bceb14..8809cf749 100644 --- a/src/store/PaymentMades/paymentMades.selector.tsx +++ b/src/store/PaymentMades/paymentMades.selector.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { isEqual } from 'lodash'; import { paginationLocationQuery } from '@/store/selectors'; diff --git a/src/store/PaymentMades/paymentMades.type.tsx b/src/store/PaymentMades/paymentMades.type.tsx index b976a8571..cb4f1399a 100644 --- a/src/store/PaymentMades/paymentMades.type.tsx +++ b/src/store/PaymentMades/paymentMades.type.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { PAYMENT_MADES_TABLE_STATE_SET: 'PAYMENT_MADES/TABLE_STATE_SET', PAYMENT_MADES_TABLE_STATE_RESET: 'PAYMENT_MADES/TABLE_STATE_RESET', diff --git a/src/store/PaymentReceives/paymentReceives.actions.tsx b/src/store/PaymentReceives/paymentReceives.actions.tsx index 4f2b3dcfd..f3c6c45db 100644 --- a/src/store/PaymentReceives/paymentReceives.actions.tsx +++ b/src/store/PaymentReceives/paymentReceives.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import t from '@/store/types'; export const setPaymentReceivesTableState = (queries) => { diff --git a/src/store/PaymentReceives/paymentReceives.reducer.tsx b/src/store/PaymentReceives/paymentReceives.reducer.tsx index 82a55c843..7706273b4 100644 --- a/src/store/PaymentReceives/paymentReceives.reducer.tsx +++ b/src/store/PaymentReceives/paymentReceives.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createReducer } from '@reduxjs/toolkit'; import { persistReducer, purgeStoredState } from 'redux-persist'; import storage from 'redux-persist/lib/storage'; diff --git a/src/store/PaymentReceives/paymentReceives.selector.tsx b/src/store/PaymentReceives/paymentReceives.selector.tsx index 1241bd453..5794eb80c 100644 --- a/src/store/PaymentReceives/paymentReceives.selector.tsx +++ b/src/store/PaymentReceives/paymentReceives.selector.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createSelector } from '@reduxjs/toolkit'; import { isEqual } from 'lodash'; diff --git a/src/store/PaymentReceives/paymentReceives.type.tsx b/src/store/PaymentReceives/paymentReceives.type.tsx index a654eed1d..3e2ad5d06 100644 --- a/src/store/PaymentReceives/paymentReceives.type.tsx +++ b/src/store/PaymentReceives/paymentReceives.type.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { PAYMENT_RECEIVES_TABLE_STATE_SET: 'PAYMENT_RECEIVES/TABLE_STATE_SET', PAYMENT_RECEIVES_TABLE_STATE_RESET: 'PAYMENT_RECEIVES/TABLE_STATE_RESET', diff --git a/src/store/Project/projects.actions.ts b/src/store/Project/projects.actions.ts index e3350de8e..5b5a34951 100644 --- a/src/store/Project/projects.actions.ts +++ b/src/store/Project/projects.actions.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import t from '@/store/types'; export const setProjectsTableState = (queries) => { diff --git a/src/store/Project/projects.reducer.ts b/src/store/Project/projects.reducer.ts index 43901d6b7..46f1c80da 100644 --- a/src/store/Project/projects.reducer.ts +++ b/src/store/Project/projects.reducer.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import { createReducer } from '@reduxjs/toolkit'; import { persistReducer, purgeStoredState } from 'redux-persist'; import storage from 'redux-persist/lib/storage'; diff --git a/src/store/Project/projects.selectors.ts b/src/store/Project/projects.selectors.ts index 56043026e..10a983069 100644 --- a/src/store/Project/projects.selectors.ts +++ b/src/store/Project/projects.selectors.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import { isEqual } from 'lodash'; import { createDeepEqualSelector } from '@/utils'; import { paginationLocationQuery } from '@/store/selectors'; diff --git a/src/store/Project/projects.type.ts b/src/store/Project/projects.type.ts index 8026b0cf6..4c343d42d 100644 --- a/src/store/Project/projects.type.ts +++ b/src/store/Project/projects.type.ts @@ -1,3 +1,4 @@ +// @ts-nocheck export default { PROJECTS_TABLE_STATE_SET: 'PROJECTS/TABLE_STATE_SET', PROJECTS_TABLE_STATE_RESET: 'PROJECTS/TABLE_STATE_RESET', diff --git a/src/store/ResetMiddleware.tsx b/src/store/ResetMiddleware.tsx index 2c0ff73d5..4c8bb05d0 100644 --- a/src/store/ResetMiddleware.tsx +++ b/src/store/ResetMiddleware.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default (next) => (reducer, initialState, enhancer) => { let resetType = 'RESET' let resetData = 'state' diff --git a/src/store/VendorCredit/VendorCredit.reducer.tsx b/src/store/VendorCredit/VendorCredit.reducer.tsx index 6ec5a59c5..f450f03ab 100644 --- a/src/store/VendorCredit/VendorCredit.reducer.tsx +++ b/src/store/VendorCredit/VendorCredit.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createReducer } from '@reduxjs/toolkit'; import { persistReducer, purgeStoredState } from 'redux-persist'; import storage from 'redux-persist/lib/storage'; diff --git a/src/store/VendorCredit/vendorCredit.actions.tsx b/src/store/VendorCredit/vendorCredit.actions.tsx index faca3a780..aa774e76d 100644 --- a/src/store/VendorCredit/vendorCredit.actions.tsx +++ b/src/store/VendorCredit/vendorCredit.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import t from '@/store/types'; export const setVendorCreditTableState = (queries) => { diff --git a/src/store/VendorCredit/vendorCredit.selector.tsx b/src/store/VendorCredit/vendorCredit.selector.tsx index 45e0614b9..8210cb6f8 100644 --- a/src/store/VendorCredit/vendorCredit.selector.tsx +++ b/src/store/VendorCredit/vendorCredit.selector.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { isEqual } from 'lodash'; import { paginationLocationQuery } from '@/store/selectors'; import { createDeepEqualSelector } from '@/utils'; diff --git a/src/store/VendorCredit/vendorCredit.type.tsx b/src/store/VendorCredit/vendorCredit.type.tsx index b68fcad28..0f9df83d5 100644 --- a/src/store/VendorCredit/vendorCredit.type.tsx +++ b/src/store/VendorCredit/vendorCredit.type.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { VENDOR_CREDITS_TABLE_STATE_SET: 'VENDOR_CREDITS/TABLE_STATE_SET', VENDOR_CREDITS_NOTES_TABLE_STATE_RESET: 'VENDOR_CREDITS/TABLE_STATE_RESET', diff --git a/src/store/WarehouseTransfer/warehouseTransfer.actions.tsx b/src/store/WarehouseTransfer/warehouseTransfer.actions.tsx index 8d79f5238..a4e009a1e 100644 --- a/src/store/WarehouseTransfer/warehouseTransfer.actions.tsx +++ b/src/store/WarehouseTransfer/warehouseTransfer.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import t from '@/store/types'; export const setWarehouseTransferTableState = (queries) => { diff --git a/src/store/WarehouseTransfer/warehouseTransfer.reducer.tsx b/src/store/WarehouseTransfer/warehouseTransfer.reducer.tsx index 7130a56c9..50a529dcf 100644 --- a/src/store/WarehouseTransfer/warehouseTransfer.reducer.tsx +++ b/src/store/WarehouseTransfer/warehouseTransfer.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createReducer } from '@reduxjs/toolkit'; import { persistReducer, purgeStoredState } from 'redux-persist'; import storage from 'redux-persist/lib/storage'; diff --git a/src/store/WarehouseTransfer/warehouseTransfer.selector.tsx b/src/store/WarehouseTransfer/warehouseTransfer.selector.tsx index 7b791acd0..a5b6844e8 100644 --- a/src/store/WarehouseTransfer/warehouseTransfer.selector.tsx +++ b/src/store/WarehouseTransfer/warehouseTransfer.selector.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { isEqual } from 'lodash'; import { paginationLocationQuery } from '@/store/selectors'; import { createDeepEqualSelector } from '@/utils'; diff --git a/src/store/WarehouseTransfer/warehouseTransfer.type.tsx b/src/store/WarehouseTransfer/warehouseTransfer.type.tsx index 280b1cc02..b6e7a97d0 100644 --- a/src/store/WarehouseTransfer/warehouseTransfer.type.tsx +++ b/src/store/WarehouseTransfer/warehouseTransfer.type.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { WAREHOUSE_TRANSFERS_TABLE_STATE_SET: 'WAREHOUSE_TRANSFERS/TABLE_STATE_SET', WAREHOUSE_TRANSFERS_TABLE_STATE_RESET: 'WAREHOUSE_TRANSFERS/TABLE_STATE_RESET', diff --git a/src/store/accounts/accounts.actions.tsx b/src/store/accounts/accounts.actions.tsx index 0f846c917..dfb4fc0cc 100644 --- a/src/store/accounts/accounts.actions.tsx +++ b/src/store/accounts/accounts.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import t from '@/store/types'; export const setAccountsTableState = (queries) => { diff --git a/src/store/accounts/accounts.reducer.tsx b/src/store/accounts/accounts.reducer.tsx index 4b7cdbe28..93c205084 100644 --- a/src/store/accounts/accounts.reducer.tsx +++ b/src/store/accounts/accounts.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createReducer } from '@reduxjs/toolkit'; import { persistReducer, purgeStoredState } from 'redux-persist'; import storage from 'redux-persist/lib/storage'; diff --git a/src/store/accounts/accounts.selectors.tsx b/src/store/accounts/accounts.selectors.tsx index 2106ee250..44e18f499 100644 --- a/src/store/accounts/accounts.selectors.tsx +++ b/src/store/accounts/accounts.selectors.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { isEqual } from 'lodash'; import { paginationLocationQuery } from '@/store/selectors'; diff --git a/src/store/accounts/accounts.types.tsx b/src/store/accounts/accounts.types.tsx index fc64154cf..bd0d6b0ec 100644 --- a/src/store/accounts/accounts.types.tsx +++ b/src/store/accounts/accounts.types.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { ACCOUNTS_TABLE_STATE_SET: 'ACCOUNTS/TABLE_STATE_SET', diff --git a/src/store/authentication/authentication.actions.tsx b/src/store/authentication/authentication.actions.tsx index 14ec387f3..4d2d5f048 100644 --- a/src/store/authentication/authentication.actions.tsx +++ b/src/store/authentication/authentication.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import t from '@/store/types'; export const setLogin = () => ({ type: t.LOGIN_SUCCESS }); diff --git a/src/store/authentication/authentication.reducer.tsx b/src/store/authentication/authentication.reducer.tsx index ee2dc1150..9972bf2a8 100644 --- a/src/store/authentication/authentication.reducer.tsx +++ b/src/store/authentication/authentication.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createReducer } from '@reduxjs/toolkit'; import { persistReducer } from 'redux-persist'; import purgeStoredState from 'redux-persist/es/purgeStoredState'; diff --git a/src/store/authentication/authentication.selectors.tsx b/src/store/authentication/authentication.selectors.tsx index 38a0b9989..fefeee840 100644 --- a/src/store/authentication/authentication.selectors.tsx +++ b/src/store/authentication/authentication.selectors.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { defaultTo } from 'lodash'; import { createSelector } from '@reduxjs/toolkit'; diff --git a/src/store/authentication/authentication.types.tsx b/src/store/authentication/authentication.types.tsx index 416bd0716..c5a5b3c3f 100644 --- a/src/store/authentication/authentication.types.tsx +++ b/src/store/authentication/authentication.types.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { LOGIN_REQUEST: 'LOGIN_REQUEST', diff --git a/src/store/billing/Billing.action.tsx b/src/store/billing/Billing.action.tsx index 69120471d..ce29df5d4 100644 --- a/src/store/billing/Billing.action.tsx +++ b/src/store/billing/Billing.action.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import ApiService from '@/services/ApiService'; import t from '@/store/types'; diff --git a/src/store/billing/Billing.type.tsx b/src/store/billing/Billing.type.tsx deleted file mode 100644 index e69de29bb..000000000 diff --git a/src/store/createStore.tsx b/src/store/createStore.tsx index 6bd1b443e..e3086811d 100644 --- a/src/store/createStore.tsx +++ b/src/store/createStore.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createStore as createReduxStore, applyMiddleware, diff --git a/src/store/currencies/currencies.actions.tsx b/src/store/currencies/currencies.actions.tsx index be5e97974..a604023e0 100644 --- a/src/store/currencies/currencies.actions.tsx +++ b/src/store/currencies/currencies.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import ApiService from '@/services/ApiService'; import t from '@/store/types'; diff --git a/src/store/currencies/currencies.reducer.tsx b/src/store/currencies/currencies.reducer.tsx index ddd000e6c..9a0229d8a 100644 --- a/src/store/currencies/currencies.reducer.tsx +++ b/src/store/currencies/currencies.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createReducer } from '@reduxjs/toolkit'; import t from '@/store/types'; diff --git a/src/store/currencies/currencies.selector.tsx b/src/store/currencies/currencies.selector.tsx index 7d4b28695..f1bd091ba 100644 --- a/src/store/currencies/currencies.selector.tsx +++ b/src/store/currencies/currencies.selector.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck // @flow import { createSelector } from 'reselect'; import { getItemById } from '@/store/selectors'; diff --git a/src/store/customFields/customFields.actions.tsx b/src/store/customFields/customFields.actions.tsx index 7ca5f27a9..c6fc1b178 100644 --- a/src/store/customFields/customFields.actions.tsx +++ b/src/store/customFields/customFields.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import ApiService from '@/services/ApiService'; import t from '@/store/types'; diff --git a/src/store/customFields/customFields.reducer.tsx b/src/store/customFields/customFields.reducer.tsx index f179793d1..69404d145 100644 --- a/src/store/customFields/customFields.reducer.tsx +++ b/src/store/customFields/customFields.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import {createReducer} from '@reduxjs/toolkit'; import t from '@/store/types'; diff --git a/src/store/customFields/customFields.types.tsx b/src/store/customFields/customFields.types.tsx index f59ff8585..3dfac2336 100644 --- a/src/store/customFields/customFields.types.tsx +++ b/src/store/customFields/customFields.types.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { CUSTOM_FIELDS_RESOURCE_SET: 'CUSTOM_FIELDS_RESOURCE_SET', diff --git a/src/store/customViews/customViews.actions.tsx b/src/store/customViews/customViews.actions.tsx index d28c21235..fe4948424 100644 --- a/src/store/customViews/customViews.actions.tsx +++ b/src/store/customViews/customViews.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import ApiService from "services/ApiService"; import t from '@/store/types'; diff --git a/src/store/customViews/customViews.reducer.tsx b/src/store/customViews/customViews.reducer.tsx index 93c95df3c..02c0c0c15 100644 --- a/src/store/customViews/customViews.reducer.tsx +++ b/src/store/customViews/customViews.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createReducer } from "@reduxjs/toolkit"; import t from '@/store/types'; diff --git a/src/store/customViews/customViews.selectors.tsx b/src/store/customViews/customViews.selectors.tsx index 37dfc2b4f..747df8825 100644 --- a/src/store/customViews/customViews.selectors.tsx +++ b/src/store/customViews/customViews.selectors.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createSelector } from 'reselect'; import { pickItemsFromIds } from '@/store/selectors'; import { getResourceColumn } from '@/store/resources/resources.reducer'; diff --git a/src/store/customViews/customViews.types.tsx b/src/store/customViews/customViews.types.tsx index cd7b9c475..ba9134fbb 100644 --- a/src/store/customViews/customViews.types.tsx +++ b/src/store/customViews/customViews.types.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { VIEW_META_SET: 'VIEW_META_SET', diff --git a/src/store/customers/customers.actions.tsx b/src/store/customers/customers.actions.tsx index 14ec4a3e6..5417d88c9 100644 --- a/src/store/customers/customers.actions.tsx +++ b/src/store/customers/customers.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import t from '@/store/types'; /** diff --git a/src/store/customers/customers.reducer.tsx b/src/store/customers/customers.reducer.tsx index bbe55367a..69520436c 100644 --- a/src/store/customers/customers.reducer.tsx +++ b/src/store/customers/customers.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createReducer } from '@reduxjs/toolkit'; import { persistReducer } from 'redux-persist'; import storage from 'redux-persist/lib/storage'; diff --git a/src/store/customers/customers.selectors.tsx b/src/store/customers/customers.selectors.tsx index 738fe7e24..7895a6833 100644 --- a/src/store/customers/customers.selectors.tsx +++ b/src/store/customers/customers.selectors.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { isEqual } from 'lodash'; import { paginationLocationQuery } from '@/store/selectors'; diff --git a/src/store/customers/customers.type.tsx b/src/store/customers/customers.type.tsx index 66c10a1ca..3774e739a 100644 --- a/src/store/customers/customers.type.tsx +++ b/src/store/customers/customers.type.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { CUSTOMERS_TABLE_STATE_SET: 'CUSTOMERS/TABLE_STATE_SET', CUSTOMERS_TABLE_STATE_RESET: 'CUSTOMERS/TABLE_STATE_RESET' diff --git a/src/store/dashboard/dashboard.actions.tsx b/src/store/dashboard/dashboard.actions.tsx index 44fc073e9..f4e329d71 100644 --- a/src/store/dashboard/dashboard.actions.tsx +++ b/src/store/dashboard/dashboard.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import t from '@/store/types'; export function dashboardPageTitle(pageTitle) { diff --git a/src/store/dashboard/dashboard.reducer.tsx b/src/store/dashboard/dashboard.reducer.tsx index a7b276f0e..59f1bb779 100644 --- a/src/store/dashboard/dashboard.reducer.tsx +++ b/src/store/dashboard/dashboard.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createReducer } from '@reduxjs/toolkit'; import { isUndefined, isNumber } from 'lodash'; import t from '@/store/types'; diff --git a/src/store/dashboard/dashboard.selectors.tsx b/src/store/dashboard/dashboard.selectors.tsx index fd7ef77d1..00c93590b 100644 --- a/src/store/dashboard/dashboard.selectors.tsx +++ b/src/store/dashboard/dashboard.selectors.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createSelector } from '@reduxjs/toolkit'; const dialogByNameSelector = (state, props) => diff --git a/src/store/dashboard/dashboard.types.tsx b/src/store/dashboard/dashboard.types.tsx index d613b94ab..bf6aa9f4e 100644 --- a/src/store/dashboard/dashboard.types.tsx +++ b/src/store/dashboard/dashboard.types.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { OPEN_DIALOG: 'OPEN_DIALOG', CLOSE_DIALOG: 'CLOSE_DIALOG', diff --git a/src/store/enhancers/monitorReducer.tsx b/src/store/enhancers/monitorReducer.tsx index ffc604d0f..2afdef048 100644 --- a/src/store/enhancers/monitorReducer.tsx +++ b/src/store/enhancers/monitorReducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck const round = number => Math.round(number * 100) / 100 const monitorReducerEnhancer = createStore => ( reducer, diff --git a/src/store/expenses/expenses.actions.tsx b/src/store/expenses/expenses.actions.tsx index 7c1350324..ca3089c68 100644 --- a/src/store/expenses/expenses.actions.tsx +++ b/src/store/expenses/expenses.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import t from '@/store/types'; /** diff --git a/src/store/expenses/expenses.reducer.tsx b/src/store/expenses/expenses.reducer.tsx index 9de554a13..aa3e8d669 100644 --- a/src/store/expenses/expenses.reducer.tsx +++ b/src/store/expenses/expenses.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createReducer } from '@reduxjs/toolkit'; import { persistReducer, purgeStoredState } from 'redux-persist'; import storage from 'redux-persist/lib/storage'; diff --git a/src/store/expenses/expenses.selectors.tsx b/src/store/expenses/expenses.selectors.tsx index c46dbf57d..117e04df6 100644 --- a/src/store/expenses/expenses.selectors.tsx +++ b/src/store/expenses/expenses.selectors.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { isEqual } from 'lodash'; import { createDeepEqualSelector } from '@/utils'; diff --git a/src/store/financialStatement/financialStatements.actions.tsx b/src/store/financialStatement/financialStatements.actions.tsx index 92a6d7fd0..c2dc6003e 100644 --- a/src/store/financialStatement/financialStatements.actions.tsx +++ b/src/store/financialStatement/financialStatements.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import t from '@/store/types'; /** diff --git a/src/store/financialStatement/financialStatements.mappers.tsx b/src/store/financialStatement/financialStatements.mappers.tsx index 7377bbb23..ba59df5b6 100644 --- a/src/store/financialStatement/financialStatements.mappers.tsx +++ b/src/store/financialStatement/financialStatements.mappers.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { omit, chain } from 'lodash'; import moment from 'moment'; diff --git a/src/store/financialStatement/financialStatements.reducer.tsx b/src/store/financialStatement/financialStatements.reducer.tsx index 097317c22..2a5bc6c9d 100644 --- a/src/store/financialStatement/financialStatements.reducer.tsx +++ b/src/store/financialStatement/financialStatements.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createReducer } from '@reduxjs/toolkit'; import t from '@/store/types'; diff --git a/src/store/financialStatement/financialStatements.selectors.tsx b/src/store/financialStatement/financialStatements.selectors.tsx index 46ba3c0be..b5f0c8d10 100644 --- a/src/store/financialStatement/financialStatements.selectors.tsx +++ b/src/store/financialStatement/financialStatements.selectors.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createSelector } from 'reselect'; // Financial Statements selectors. diff --git a/src/store/financialStatement/financialStatements.types.tsx b/src/store/financialStatement/financialStatements.types.tsx index 628ec2893..88da7d11d 100644 --- a/src/store/financialStatement/financialStatements.types.tsx +++ b/src/store/financialStatement/financialStatements.types.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { BALANCE_SHEET: 'BALANCE_SHEET', TRIAL_BALANCE_SHEET: 'TRIAL_BALANCE_SHEET', diff --git a/src/store/globalErrors/globalErrors.actions.tsx b/src/store/globalErrors/globalErrors.actions.tsx index 829a6b185..2d2b5eabe 100644 --- a/src/store/globalErrors/globalErrors.actions.tsx +++ b/src/store/globalErrors/globalErrors.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export const setGlobalErrors = (errors) => { diff --git a/src/store/globalErrors/globalErrors.reducer.tsx b/src/store/globalErrors/globalErrors.reducer.tsx index 5705e1353..d1d0dbd97 100644 --- a/src/store/globalErrors/globalErrors.reducer.tsx +++ b/src/store/globalErrors/globalErrors.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createReducer } from '@reduxjs/toolkit'; import t from '@/store/types'; diff --git a/src/store/inventoryAdjustments/inventoryAdjustment.actions.tsx b/src/store/inventoryAdjustments/inventoryAdjustment.actions.tsx index 24fd58210..85934f795 100644 --- a/src/store/inventoryAdjustments/inventoryAdjustment.actions.tsx +++ b/src/store/inventoryAdjustments/inventoryAdjustment.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import t from '@/store/types'; /** diff --git a/src/store/inventoryAdjustments/inventoryAdjustment.reducer.tsx b/src/store/inventoryAdjustments/inventoryAdjustment.reducer.tsx index 05c27c054..835f98af3 100644 --- a/src/store/inventoryAdjustments/inventoryAdjustment.reducer.tsx +++ b/src/store/inventoryAdjustments/inventoryAdjustment.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createReducer } from '@reduxjs/toolkit'; import { persistReducer, purgeStoredState } from 'redux-persist'; import storage from 'redux-persist/lib/storage'; diff --git a/src/store/inventoryAdjustments/inventoryAdjustment.selector.tsx b/src/store/inventoryAdjustments/inventoryAdjustment.selector.tsx index 83ce618df..624621c08 100644 --- a/src/store/inventoryAdjustments/inventoryAdjustment.selector.tsx +++ b/src/store/inventoryAdjustments/inventoryAdjustment.selector.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createSelector } from '@reduxjs/toolkit'; import { paginationLocationQuery, diff --git a/src/store/inventoryAdjustments/inventoryAdjustment.type.tsx b/src/store/inventoryAdjustments/inventoryAdjustment.type.tsx index a8fbdc5dd..1d53f6d96 100644 --- a/src/store/inventoryAdjustments/inventoryAdjustment.type.tsx +++ b/src/store/inventoryAdjustments/inventoryAdjustment.type.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { INVENTORY_ADJUSTMENTS_TABLE_STATE_SET: 'INVENTORY_ADJUSTMENTS/TABLE_STATE_SET', diff --git a/src/store/itemCategories/ItemsCategories.selectors.tsx b/src/store/itemCategories/ItemsCategories.selectors.tsx index 0884be7fd..518746949 100644 --- a/src/store/itemCategories/ItemsCategories.selectors.tsx +++ b/src/store/itemCategories/ItemsCategories.selectors.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { paginationLocationQuery } from '@/store/selectors'; import { createDeepEqualSelector } from '@/utils'; diff --git a/src/store/itemCategories/itemsCategory.actions.tsx b/src/store/itemCategories/itemsCategory.actions.tsx index d53be156d..9a28e8c9e 100644 --- a/src/store/itemCategories/itemsCategory.actions.tsx +++ b/src/store/itemCategories/itemsCategory.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import t from '@/store/types'; /** diff --git a/src/store/itemCategories/itemsCategory.reducer.tsx b/src/store/itemCategories/itemsCategory.reducer.tsx index c9c588814..576392211 100644 --- a/src/store/itemCategories/itemsCategory.reducer.tsx +++ b/src/store/itemCategories/itemsCategory.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createReducer } from '@reduxjs/toolkit'; import { persistReducer, purgeStoredState } from 'redux-persist'; import storage from 'redux-persist/lib/storage'; diff --git a/src/store/itemCategories/itemsCategory.type.tsx b/src/store/itemCategories/itemsCategory.type.tsx index 9e04a9d65..0f3865cfd 100644 --- a/src/store/itemCategories/itemsCategory.type.tsx +++ b/src/store/itemCategories/itemsCategory.type.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { ITEMS_CATEGORIES_TABLE_STATE_SET: 'ITEMS_CATEGORIES/TABLE_STATE_SET', }; diff --git a/src/store/itemCategories/itemsCateory.reducer.tsx b/src/store/itemCategories/itemsCateory.reducer.tsx index 3ab56e1bb..65cd104de 100644 --- a/src/store/itemCategories/itemsCateory.reducer.tsx +++ b/src/store/itemCategories/itemsCateory.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import t from '@/store/types'; import { createReducer } from '@reduxjs/toolkit'; diff --git a/src/store/items/items.actions.tsx b/src/store/items/items.actions.tsx index 935b5f216..6eabc4212 100644 --- a/src/store/items/items.actions.tsx +++ b/src/store/items/items.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import t from '@/store/types'; export const setItemsTableState = (queries) => { diff --git a/src/store/items/items.reducer.tsx b/src/store/items/items.reducer.tsx index 6d755d2a3..f900529da 100644 --- a/src/store/items/items.reducer.tsx +++ b/src/store/items/items.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createReducer } from '@reduxjs/toolkit'; import { persistReducer, purgeStoredState } from 'redux-persist'; import storage from 'redux-persist/lib/storage'; diff --git a/src/store/items/items.selectors.tsx b/src/store/items/items.selectors.tsx index 718657e80..0b23b5130 100644 --- a/src/store/items/items.selectors.tsx +++ b/src/store/items/items.selectors.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { isEqual } from 'lodash'; import { paginationLocationQuery } from '@/store/selectors'; diff --git a/src/store/items/items.types.tsx b/src/store/items/items.types.tsx index 572729ba5..5b59b99e7 100644 --- a/src/store/items/items.types.tsx +++ b/src/store/items/items.types.tsx @@ -1,4 +1,3 @@ - export default { ITEMS_TABLE_STATE_SET: 'ITEMS/TABLE_STATE_SET', ITEMS_TABLE_STATE_RESET: 'ITEMS/TABLE_STATE_RESET', diff --git a/src/store/journalNumber.reducer.tsx b/src/store/journalNumber.reducer.tsx index d9dcda832..7dfd8d587 100644 --- a/src/store/journalNumber.reducer.tsx +++ b/src/store/journalNumber.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export const journalNumberChangedReducer = (type) => ({ [type]: (state, action) => { diff --git a/src/store/localStorage.tsx b/src/store/localStorage.tsx index dbf54e43f..cc0e08c52 100644 --- a/src/store/localStorage.tsx +++ b/src/store/localStorage.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck const LOCAL_STORAGE_NAMESPACE = 'application_state'; diff --git a/src/store/logger.middleware.ts b/src/store/logger.middleware.ts index acaa92fa5..863b55401 100644 --- a/src/store/logger.middleware.ts +++ b/src/store/logger.middleware.ts @@ -1,3 +1,4 @@ +// @ts-nocheck const logger = store => next => action => { console.group(action.type) console.info('dispatching', action) diff --git a/src/store/manualJournals/manualJournals.actions.tsx b/src/store/manualJournals/manualJournals.actions.tsx index 90c858c1c..a72d1e4e6 100644 --- a/src/store/manualJournals/manualJournals.actions.tsx +++ b/src/store/manualJournals/manualJournals.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import t from '@/store/types'; export const setManualJournalsTableState = (queries) => { diff --git a/src/store/manualJournals/manualJournals.reducers.tsx b/src/store/manualJournals/manualJournals.reducers.tsx index 4e87beb09..62d72dbde 100644 --- a/src/store/manualJournals/manualJournals.reducers.tsx +++ b/src/store/manualJournals/manualJournals.reducers.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createReducer } from '@reduxjs/toolkit'; import { persistReducer, purgeStoredState } from 'redux-persist'; import storage from 'redux-persist/lib/storage'; diff --git a/src/store/manualJournals/manualJournals.selectors.tsx b/src/store/manualJournals/manualJournals.selectors.tsx index c37114d42..47c5164c1 100644 --- a/src/store/manualJournals/manualJournals.selectors.tsx +++ b/src/store/manualJournals/manualJournals.selectors.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { isEqual } from 'lodash'; import { paginationLocationQuery } from '@/store/selectors'; diff --git a/src/store/manualJournals/manualJournals.types.tsx b/src/store/manualJournals/manualJournals.types.tsx index 414d4f0ba..46e1cd149 100644 --- a/src/store/manualJournals/manualJournals.types.tsx +++ b/src/store/manualJournals/manualJournals.types.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { MANUAL_JOURNALS_TABLE_STATE_SET: 'MANUAL_JOURNALS/TABLE_STATE_SET', MANUAL_JOURNALS_TABLE_STATE_RESET: 'MANUAL_JOURNALS/TABLE_STATE_RESET', diff --git a/src/store/media/media.actions.tsx b/src/store/media/media.actions.tsx deleted file mode 100644 index 6e680deeb..000000000 --- a/src/store/media/media.actions.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import ApiService from "services/ApiService" - -export const submitMedia = ({ form, config }) => { - return (dispatch) => { - return ApiService.post('media/upload', form, config); - }; -}; - -export const deleteMedia = ({ ids }) => { - return (dispatch) => { - return ApiService.delete('media', { params: { ids } }); - } -}; \ No newline at end of file diff --git a/src/store/media/media.reducers.tsx b/src/store/media/media.reducers.tsx deleted file mode 100644 index e69de29bb..000000000 diff --git a/src/store/media/media.types.tsx b/src/store/media/media.types.tsx deleted file mode 100644 index e69de29bb..000000000 diff --git a/src/store/organizations/organizations.actions.tsx b/src/store/organizations/organizations.actions.tsx index e96a1993e..45ab74968 100644 --- a/src/store/organizations/organizations.actions.tsx +++ b/src/store/organizations/organizations.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import ApiService from '@/services/ApiService'; import t from '@/store/types'; diff --git a/src/store/organizations/organizations.reducers.tsx b/src/store/organizations/organizations.reducers.tsx index c26663fe6..3729480b2 100644 --- a/src/store/organizations/organizations.reducers.tsx +++ b/src/store/organizations/organizations.reducers.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createReducer } from '@reduxjs/toolkit'; import { omit } from 'lodash'; import t from '@/store/types'; diff --git a/src/store/organizations/organizations.selectors.tsx b/src/store/organizations/organizations.selectors.tsx index 4abc98475..00116666f 100644 --- a/src/store/organizations/organizations.selectors.tsx +++ b/src/store/organizations/organizations.selectors.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createSelector } from '@reduxjs/toolkit'; const organizationSelector = (state, props) => { diff --git a/src/store/organizations/organizations.types.tsx b/src/store/organizations/organizations.types.tsx index 1ab9f3d00..c1fa15be4 100644 --- a/src/store/organizations/organizations.types.tsx +++ b/src/store/organizations/organizations.types.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { ORGANIZATION_SET: 'ORGANIZATION_SET', diff --git a/src/store/organizations/withSetupWizard.tsx b/src/store/organizations/withSetupWizard.tsx index fba1ec4e7..7f39a2466 100644 --- a/src/store/organizations/withSetupWizard.tsx +++ b/src/store/organizations/withSetupWizard.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { connect } from 'react-redux'; export default (mapState) => { diff --git a/src/store/paginator.reducer.tsx b/src/store/paginator.reducer.tsx deleted file mode 100644 index e69de29bb..000000000 diff --git a/src/store/plans/plans.actions.tsx b/src/store/plans/plans.actions.tsx index 4bfd8e4c5..88d33842c 100644 --- a/src/store/plans/plans.actions.tsx +++ b/src/store/plans/plans.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import t from '@/store/types'; export const initSubscriptionPlans = () => ({ diff --git a/src/store/plans/plans.reducer.tsx b/src/store/plans/plans.reducer.tsx index 098e08cdd..a5b3bb4bc 100644 --- a/src/store/plans/plans.reducer.tsx +++ b/src/store/plans/plans.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createReducer } from '@reduxjs/toolkit'; import intl from 'react-intl-universal'; import t from '@/store/types'; diff --git a/src/store/plans/plans.selectors.tsx b/src/store/plans/plans.selectors.tsx index 02568c1be..cd75bfbb8 100644 --- a/src/store/plans/plans.selectors.tsx +++ b/src/store/plans/plans.selectors.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createSelector } from 'reselect'; const plansSelector = (state) => state.plans.plans; diff --git a/src/store/plans/plans.types.tsx b/src/store/plans/plans.types.tsx index fe29fa7fd..b08cc83f0 100644 --- a/src/store/plans/plans.types.tsx +++ b/src/store/plans/plans.types.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { INIT_SUBSCRIPTION_PLANS: 'INIT_SUBSCRIPTION_PLANS', diff --git a/src/store/preferences/preferences.actions.tsx b/src/store/preferences/preferences.actions.tsx index 9c1e044e1..381d44bda 100644 --- a/src/store/preferences/preferences.actions.tsx +++ b/src/store/preferences/preferences.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import ApiService from "services/ApiService"; import t from '@/store/types'; diff --git a/src/store/preferences/preferences.reducer.tsx b/src/store/preferences/preferences.reducer.tsx deleted file mode 100644 index e69de29bb..000000000 diff --git a/src/store/preferences/preferences.types.tsx b/src/store/preferences/preferences.types.tsx index 8bf373371..f7b8cde39 100644 --- a/src/store/preferences/preferences.types.tsx +++ b/src/store/preferences/preferences.types.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { diff --git a/src/store/queryReducers.tsx b/src/store/queryReducers.tsx index 738f7bd1d..784a11774 100644 --- a/src/store/queryReducers.tsx +++ b/src/store/queryReducers.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export const createTableQueryReducers = diff --git a/src/store/receipts/receipts.actions.tsx b/src/store/receipts/receipts.actions.tsx index eb18e67b0..115608990 100644 --- a/src/store/receipts/receipts.actions.tsx +++ b/src/store/receipts/receipts.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import t from '@/store/types'; export const setReceiptsTableState = (queries) => { diff --git a/src/store/receipts/receipts.reducer.tsx b/src/store/receipts/receipts.reducer.tsx index e2dd29db9..9cbc5aa5c 100644 --- a/src/store/receipts/receipts.reducer.tsx +++ b/src/store/receipts/receipts.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createReducer } from '@reduxjs/toolkit'; import { persistReducer, purgeStoredState } from 'redux-persist'; import storage from 'redux-persist/lib/storage'; diff --git a/src/store/receipts/receipts.selector.tsx b/src/store/receipts/receipts.selector.tsx index dbe65d21e..b2b2b7e4e 100644 --- a/src/store/receipts/receipts.selector.tsx +++ b/src/store/receipts/receipts.selector.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { isEqual } from 'lodash'; import { paginationLocationQuery } from '@/store/selectors'; diff --git a/src/store/receipts/receipts.type.tsx b/src/store/receipts/receipts.type.tsx index a95809294..f8a8a4a70 100644 --- a/src/store/receipts/receipts.type.tsx +++ b/src/store/receipts/receipts.type.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { RECEIPTS_TABLE_STATE_SET: 'RECEIPTS/TABLE_STATE_SET', diff --git a/src/store/reducers.tsx b/src/store/reducers.tsx index b89241911..4a778e1de 100644 --- a/src/store/reducers.tsx +++ b/src/store/reducers.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { combineReducers } from 'redux'; import types from './types'; diff --git a/src/store/registers/register.action.tsx b/src/store/registers/register.action.tsx index 4df122004..505d559da 100644 --- a/src/store/registers/register.action.tsx +++ b/src/store/registers/register.action.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import ApiService from '@/services/ApiService'; export const submitRegister = ({ form }) => { diff --git a/src/store/registers/register.reducer.tsx b/src/store/registers/register.reducer.tsx index 62ca78cbc..8a51735a6 100644 --- a/src/store/registers/register.reducer.tsx +++ b/src/store/registers/register.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createReducer } from '@reduxjs/toolkit'; import t from '@/store/types'; diff --git a/src/store/registers/register.type.tsx b/src/store/registers/register.type.tsx index 17a53e1c0..685f86f10 100644 --- a/src/store/registers/register.type.tsx +++ b/src/store/registers/register.type.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { REGISTER_SET: 'REGISTER_SUCCESS', REGISTER_CLEAR_ERRORS: 'REGISTER_CLEAR_ERRORS', diff --git a/src/store/resetPassword/resetPassword.action.tsx b/src/store/resetPassword/resetPassword.action.tsx index 7b8258856..d00fe44b0 100644 --- a/src/store/resetPassword/resetPassword.action.tsx +++ b/src/store/resetPassword/resetPassword.action.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import ApiService from '@/services/ApiService'; export const submitResetPassword = (password) => { diff --git a/src/store/resources/resource.types.tsx b/src/store/resources/resource.types.tsx deleted file mode 100644 index e69de29bb..000000000 diff --git a/src/store/resources/resources.actions.tsx b/src/store/resources/resources.actions.tsx index 0d6322234..f5930eacd 100644 --- a/src/store/resources/resources.actions.tsx +++ b/src/store/resources/resources.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import ApiService from "services/ApiService"; import t from '@/store/types'; diff --git a/src/store/resources/resources.reducer.tsx b/src/store/resources/resources.reducer.tsx index 7749b334e..6d85eafbf 100644 --- a/src/store/resources/resources.reducer.tsx +++ b/src/store/resources/resources.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createReducer } from "@reduxjs/toolkit"; import t from '@/store/types'; diff --git a/src/store/resources/resources.selectors.tsx b/src/store/resources/resources.selectors.tsx index 3ce1ba79b..869c540e7 100644 --- a/src/store/resources/resources.selectors.tsx +++ b/src/store/resources/resources.selectors.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createSelector } from 'reselect'; import { pickItemsFromIds } from '@/store/selectors'; diff --git a/src/store/search/search.actions.tsx b/src/store/search/search.actions.tsx index 7faf60885..eab8c91a6 100644 --- a/src/store/search/search.actions.tsx +++ b/src/store/search/search.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import t from '@/store/types'; export function openSearch(result) { diff --git a/src/store/search/search.reducer.tsx b/src/store/search/search.reducer.tsx index d8cc8dc32..6d97b4b7a 100644 --- a/src/store/search/search.reducer.tsx +++ b/src/store/search/search.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import t from '@/store/types'; import { createReducer } from '@reduxjs/toolkit'; diff --git a/src/store/search/search.type.tsx b/src/store/search/search.type.tsx index 27f6f2834..52e7c8809 100644 --- a/src/store/search/search.type.tsx +++ b/src/store/search/search.type.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { SEARCH_TYPE: 'SEARCH_TYPE', OPEN_SEARCH: 'OPEN_SEARCH', diff --git a/src/store/selectors.tsx b/src/store/selectors.tsx index cc083180a..17987b0e4 100644 --- a/src/store/selectors.tsx +++ b/src/store/selectors.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { pick, at, mapValues } from 'lodash'; export const getItemById = (items, id) => { diff --git a/src/store/settings/settings.actions.tsx b/src/store/settings/settings.actions.tsx index fb0a67c07..274f8956d 100644 --- a/src/store/settings/settings.actions.tsx +++ b/src/store/settings/settings.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import ApiService from '@/services/ApiService'; import t from '@/store/types'; diff --git a/src/store/settings/settings.reducer.tsx b/src/store/settings/settings.reducer.tsx index bd7eb5b1d..6315cefb6 100644 --- a/src/store/settings/settings.reducer.tsx +++ b/src/store/settings/settings.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { camelCase } from 'lodash'; import { createReducer } from '@reduxjs/toolkit'; import storage from 'redux-persist/lib/storage'; diff --git a/src/store/settings/settings.selectors.tsx b/src/store/settings/settings.selectors.tsx deleted file mode 100644 index e69de29bb..000000000 diff --git a/src/store/settings/settings.type.tsx b/src/store/settings/settings.type.tsx index 50226c5d2..3d2012fd0 100644 --- a/src/store/settings/settings.type.tsx +++ b/src/store/settings/settings.type.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { SETTING_LIST_SET: 'SETTING_LIST_SET', CLEAR_OPTIONS_FORM_ERRORS: 'CLEAR_OPTIONS_FORM_ERRORS', diff --git a/src/store/subscription/subscription.actions.tsx b/src/store/subscription/subscription.actions.tsx index c5c33170f..f06958dad 100644 --- a/src/store/subscription/subscription.actions.tsx +++ b/src/store/subscription/subscription.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import ApiService from '@/services/ApiService'; import t from '@/store/types'; diff --git a/src/store/subscription/subscription.reducer.tsx b/src/store/subscription/subscription.reducer.tsx index 06d4ece40..30d10fde1 100644 --- a/src/store/subscription/subscription.reducer.tsx +++ b/src/store/subscription/subscription.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createReducer } from '@reduxjs/toolkit'; import t from '@/store/types'; diff --git a/src/store/subscription/subscription.selectors.tsx b/src/store/subscription/subscription.selectors.tsx index 47387a2a6..f530626fb 100644 --- a/src/store/subscription/subscription.selectors.tsx +++ b/src/store/subscription/subscription.selectors.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createSelector } from '@reduxjs/toolkit'; import { includes } from 'lodash'; diff --git a/src/store/subscription/subscription.types.tsx b/src/store/subscription/subscription.types.tsx index 6a9692684..3ff898c07 100644 --- a/src/store/subscription/subscription.types.tsx +++ b/src/store/subscription/subscription.types.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { SET_PLAN_SUBSCRIPTIONS_LIST: 'SET_PLAN_SUBSCRIPTIONS_LIST', diff --git a/src/store/tableState.reducer.tsx b/src/store/tableState.reducer.tsx index 120d75cee..4aa47b972 100644 --- a/src/store/tableState.reducer.tsx +++ b/src/store/tableState.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck const TYPES = { TABLE_STATE_SET: 'TABLE_STATE_SET', diff --git a/src/store/types.tsx b/src/store/types.tsx index 602953034..50fd60bed 100644 --- a/src/store/types.tsx +++ b/src/store/types.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import authentication from './authentication/authentication.types'; import accounts from './accounts/accounts.types'; import cashflowAccounts from './CashflowAccounts/CashflowAccounts.types'; @@ -9,7 +10,6 @@ import dashboard from './dashboard/dashboard.types'; import expenses from './expenses/expenses.types'; import items from './items/items.types'; import preferences from './preferences/preferences.types'; -import resources from './resources/resource.types'; import users from './users/users.types'; import financialStatements from './financialStatement/financialStatements.types'; import itemCategories from './itemCategories/itemsCategory.type'; @@ -45,7 +45,6 @@ export default { ...expenses, ...items, ...preferences, - ...resources, ...users, ...financialStatements, ...itemCategories, diff --git a/src/store/users/users.actions.tsx b/src/store/users/users.actions.tsx index 34ad2bdbb..e7e3dcf03 100644 --- a/src/store/users/users.actions.tsx +++ b/src/store/users/users.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import ApiService from '@/services/ApiService'; import t from '@/store/types'; diff --git a/src/store/users/users.reducer.tsx b/src/store/users/users.reducer.tsx index e5475f4f0..914199f16 100644 --- a/src/store/users/users.reducer.tsx +++ b/src/store/users/users.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createReducer } from '@reduxjs/toolkit'; import { createTableQueryReducers } from '@/store/queryReducers'; import t from '@/store/types'; diff --git a/src/store/users/users.selectors.tsx b/src/store/users/users.selectors.tsx index 0f40e56da..2ac7b5b26 100644 --- a/src/store/users/users.selectors.tsx +++ b/src/store/users/users.selectors.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createSelector } from '@reduxjs/toolkit'; import { pickItemsFromIds, getItemById } from '@/store/selectors'; diff --git a/src/store/users/users.types.tsx b/src/store/users/users.types.tsx index 1837cdb78..e89f0c968 100644 --- a/src/store/users/users.types.tsx +++ b/src/store/users/users.types.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { USERS_LIST_SET: 'USERS_LIST_SET', USERS_TABLE_LOADING: 'USERS_TABLE_LOADING', diff --git a/src/store/vendors/vendors.actions.tsx b/src/store/vendors/vendors.actions.tsx index 3305d87cd..fb53bca1a 100644 --- a/src/store/vendors/vendors.actions.tsx +++ b/src/store/vendors/vendors.actions.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import t from '@/store/types'; export const setVendorsTableState = (queries) => { diff --git a/src/store/vendors/vendors.reducer.tsx b/src/store/vendors/vendors.reducer.tsx index a2d94a758..4b3ae0128 100644 --- a/src/store/vendors/vendors.reducer.tsx +++ b/src/store/vendors/vendors.reducer.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { createReducer } from '@reduxjs/toolkit'; import { persistReducer, purgeStoredState } from 'redux-persist'; import storage from 'redux-persist/lib/storage'; diff --git a/src/store/vendors/vendors.selectors.tsx b/src/store/vendors/vendors.selectors.tsx index 1a74e5e3e..5c436e0d7 100644 --- a/src/store/vendors/vendors.selectors.tsx +++ b/src/store/vendors/vendors.selectors.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { isEqual } from 'lodash'; import { createDeepEqualSelector } from '@/utils'; diff --git a/src/store/vendors/vendors.types.tsx b/src/store/vendors/vendors.types.tsx index a4ad4e39a..2eb685df9 100644 --- a/src/store/vendors/vendors.types.tsx +++ b/src/store/vendors/vendors.types.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck export default { VENDORS_TABLE_STATE_SET: 'VENDORS/TABLE_STATE_SET', VENDORS_TABLE_STATE_RESET: 'VENDORS/TABLE_STATE_RESET', diff --git a/src/utils/deep.tsx b/src/utils/deep.tsx index 500c49b07..eee54ce1b 100644 --- a/src/utils/deep.tsx +++ b/src/utils/deep.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import _ from 'lodash'; import Deepdash from 'deepdash'; diff --git a/src/utils/index.tsx b/src/utils/index.tsx index 67cef208a..4674efb50 100644 --- a/src/utils/index.tsx +++ b/src/utils/index.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import React from 'react'; import moment from 'moment'; import _ from 'lodash';