Skip to content

Commit

Permalink
Fixe Imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Shailesh351 committed Apr 29, 2021
1 parent ce595c7 commit 2dd257f
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 4 deletions.
5 changes: 5 additions & 0 deletions app/settings/client/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { settings } from './lib/settings';

export {
settings,
};
6 changes: 6 additions & 0 deletions app/settings/server/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { settings, SettingsEvents } from './functions/settings';

export {
settings,
SettingsEvents,
};
2 changes: 1 addition & 1 deletion client/importPackages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ import '../app/ui-login/client';
import '../app/ui-master/client';
import '../app/ui-message/client';
import '../app/ui-sidenav/client';
import '../app/ui-share';
import '../app/ui-share/client';
import '../app/ui-vrecord/client';
import '../app/videobridge/client';
import '../app/webdav/client';
Expand Down
2 changes: 1 addition & 1 deletion client/importServiceWorker.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Meteor } from 'meteor/meteor';
import { Tracker } from 'meteor/tracker';

import { settings } from '../app/settings';
import { settings } from '../app/settings/client';
import { modal } from '../app/ui-utils/client';
import { handleError, t } from '../app/utils/client';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Meteor } from 'meteor/meteor';

import { callbacks } from '../../../app/callbacks';
import { callbacks } from '../../../app/callbacks/client';

const removeUserIdOnLogout = () => {
if ('serviceWorker' in navigator) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
import { useMutableCallback } from '@rocket.chat/fuselage-hooks';
import React, { useState, useEffect } from 'react';

import { offlineAction } from '../../../../../app/ui-utils';
import { offlineAction } from '../../../../../app/ui-utils/client';
import { roomTypes, isEmail } from '../../../../../app/utils/client';
import UserAutoCompleteMultiple from '../../../../../ee/client/audit/UserAutoCompleteMultiple';
import { useEndpoint } from '../../../../contexts/ServerContext';
Expand Down

0 comments on commit 2dd257f

Please sign in to comment.