Skip to content

Commit

Permalink
Fixed the lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Kshitij-Katiyar committed Apr 29, 2024
1 parent 51971d8 commit b7f02c9
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion webapp/src/action_types/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.

import manifest from '../manifest';
import manifest from 'manifest';

const {id: PluginId} = manifest;

Expand Down
2 changes: 1 addition & 1 deletion webapp/src/actions/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import {PostTypes} from 'mattermost-redux/action_types';
import {getCurrentChannelId} from 'mattermost-redux/selectors/entities/common';

import manifest from '../manifest';
import manifest from 'manifest';

import ActionTypes from 'action_types';
import {buildQueryString, doFetch, doFetchWithResponse} from 'client';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import React from 'react';

import {ReactSelectOption} from 'types/model';

import BackendSelector, {Props as BackendSelectorProps} from '../backend_selector';
import BackendSelector, {Props as BackendSelectorProps} from 'components/data_selectors/backend_selector';

const stripHTML = (text: string) => {
if (!text) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import React from 'react';
import {isEpicIssueType, isEpicNameField} from 'utils/jira_issue_metadata';
import {IssueMetadata, JiraIssue, ReactSelectOption} from 'types/model';

import BackendSelector, {Props as BackendSelectorProps} from '../backend_selector';
import BackendSelector, {Props as BackendSelectorProps} from 'components/data_selectors/backend_selector';

const searchDefaults = 'ORDER BY updated DESC';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import React from 'react';

import {AvatarSize, JiraUser, ReactSelectOption} from 'types/model';

import BackendSelector, {Props as BackendSelectorProps} from '../backend_selector';
import BackendSelector, {Props as BackendSelectorProps} from 'components/data_selectors/backend_selector';

type Props = BackendSelectorProps & {
projectKey: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import testChannel from 'testdata/channel.json';

import {IssueMetadata, ProjectMetadata} from 'types/model';

import FullScreenModal from '../full_screen_modal/full_screen_modal';
import FullScreenModal from 'components/modals/full_screen_modal/full_screen_modal';

import ChannelSubscriptionsModal, {Props} from './channel_subscriptions';
import ChannelSubscriptionsModalInner from './channel_subscriptions_internal';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import React, {PureComponent} from 'react';

import FullScreenModal from '../full_screen_modal/full_screen_modal';
import FullScreenModal from 'components/modals/full_screen_modal/full_screen_modal';

import ChannelSubscriptionsModalInner from './channel_subscriptions_internal';
import {SharedProps} from './shared_props';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import React from 'react';

import {AllProjectMetadata, ChannelSubscription} from 'types/model';

import BackIcon from '../full_screen_modal/back_icon';
import BackIcon from 'components/modals/full_screen_modal/back_icon';

import EditChannelSubscription from './edit_channel_subscription';
import SelectChannelSubscription from './select_channel_subscription';
Expand Down
4 changes: 2 additions & 2 deletions webapp/src/hooks/hooks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ import {
openCreateModalWithoutPost,
openDisconnectModal,
sendEphemeralPost,
} from '../actions';
} from 'actions';
import {
getPluginSettings,
getUserConnectedInstances,
instanceIsInstalled,
isUserConnected,
} from '../selectors';
} from 'selectors';

type ContextArgs = {channel_id: string};

Expand Down
2 changes: 1 addition & 1 deletion webapp/src/selectors/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {createSelector} from 'reselect';
import {getConfig} from 'mattermost-redux/selectors/entities/general';
import {getCurrentUser} from 'mattermost-redux/selectors/entities/users';

import manifest from '../manifest';
import manifest from 'manifest';

import {Instance} from 'types/model';

Expand Down

0 comments on commit b7f02c9

Please sign in to comment.