Commit 241c237c authored by Adam Parák's avatar Adam Parák 💬
Browse files

Merge branch 'shared-export' into 'main'

consolidate(@inject/shared): move imports to top-level module

See merge request inject/frontend!556
parents f18b5400 2f004120
Loading
Loading
Loading
Loading
+1820 −1776

File changed.

Preview size limit exceeded, changes collapsed.

+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@ import type { LinkType } from '@/components/LinkButton'
import { NonIdealState, type NonIdealStateProps } from '@blueprintjs/core'
import { css } from '@emotion/css'
import { GetTeamChannelLogsFlat, useTypedQuery } from '@inject/graphql'
import notEmpty from '@inject/shared/utils/notEmpty'
import { notEmpty } from '@inject/shared'
import { type FC, memo, useMemo } from 'react'
import ListRenderer from './ListRenderer'

+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@ import { Button } from '@blueprintjs/core'
import { css } from '@emotion/css'
import type { Confirmation, Content, RestrictedUserF } from '@inject/graphql'
import { Confirm, useBlockableMutation } from '@inject/graphql'
import { timedFormatter } from '@inject/shared/utils/timestamp'
import { timedFormatter } from '@inject/shared'
import type { FC } from 'react'
import { useMemo } from 'react'
import { alignRight } from './classes'
+1 −1
Original line number Diff line number Diff line
import ContentComponent from '@/components/ContentComponent'
import { css } from '@emotion/css'
import type { ToolDetails } from '@inject/graphql'
import { breakWord } from '@inject/shared/css/textOverflow'
import { breakWord } from '@inject/shared'
import type { FC } from 'react'

const wrapper = css`
+1 −2
Original line number Diff line number Diff line
@@ -16,8 +16,7 @@ import {
  useTypedMutation,
  useTypedQuery,
} from '@inject/graphql'
import Keys from '@inject/shared/localstorage/keys'
import { createSyncedStore, useStore } from '@inject/shared/utils/reactive'
import { createSyncedStore, Keys, useStore } from '@inject/shared'
import type { FC } from 'react'
import { useCallback, useMemo } from 'react'

Loading