mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-23 00:00:31 +00:00
chore: Refactoring all import directories to alias and all .js|.jsx renamed to be .ts|.tsx
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import { connect } from 'react-redux';
|
||||
import { getCurrentOrganizationFactory } from '../../store/authentication/authentication.selectors';
|
||||
import { getCurrentOrganizationFactory } from '@/store/authentication/authentication.selectors';
|
||||
|
||||
export default (mapState) => {
|
||||
const getCurrentOrganization = getCurrentOrganizationFactory();
|
||||
@@ -6,7 +6,7 @@ import {
|
||||
isOrganizationSubscribedFactory,
|
||||
isOrganizationCongratsFactory,
|
||||
isOrganizationBuildRunningFactory
|
||||
} from 'store/organizations/organizations.selectors';
|
||||
} from '@/store/organizations/organizations.selectors';
|
||||
|
||||
export default (mapState) => {
|
||||
const getOrganizationById = getOrganizationByIdFactory();
|
||||
@@ -1,7 +1,7 @@
|
||||
import { connect } from 'react-redux';
|
||||
import {
|
||||
setOrganizationSetupCompleted,
|
||||
} from 'store/organizations/organizations.actions';
|
||||
} from '@/store/organizations/organizations.actions';
|
||||
|
||||
const mapDispatchToProps = (dispatch) => ({
|
||||
setOrganizationSetupCompleted: (congrats) =>
|
||||
Reference in New Issue
Block a user