File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 44 "private" : true ,
55 "type" : " module" ,
66 "scripts" : {
7- "build" : " next build" ,
7+ "build" : " next build --turbopack " ,
88 "clean" : " git clean -xdf .next .turbo node_modules coverage .swc .cache" ,
99 "dev" : " next dev --turbopack" ,
1010 "format" : " prettier --check . --ignore-path ../../.gitignore --ignore-path .prettierignore" ,
Original file line number Diff line number Diff line change 1414 * under the License.
1515 */
1616import { useMemo , useState } from 'react' ;
17+ import dynamic from 'next/dynamic' ;
1718import { useRouter } from 'next/router' ;
1819import { useMutation , useQueryClient } from '@tanstack/react-query' ;
1920import { useTranslation } from 'next-i18next' ;
@@ -37,7 +38,6 @@ import {
3738 client ,
3839 cn ,
3940 commandFilter ,
40- InfiniteScrollArea ,
4141 useOAIMutation ,
4242 usePermissions ,
4343} from '@/shared' ;
@@ -47,6 +47,11 @@ import type { Issue } from '@/entities/issue';
4747import { useFeedbackSearch } from '../lib' ;
4848import AiIssueComboboxGroup from './ai-issue-combobox-group.ui' ;
4949
50+ const InfiniteScrollArea = dynamic (
51+ ( ) => import ( '@/shared/ui/infinite-scroll-area.ui' ) ,
52+ { ssr : false } ,
53+ ) ;
54+
5055interface IProps {
5156 issues ?: Issue [ ] ;
5257 feedbackId ?: number ;
Original file line number Diff line number Diff line change @@ -48,10 +48,10 @@ export { default as LanguageSelectBox } from './language-select-box.ui';
4848export { default as AnonymousTemplate } from './anonymous-template.ui' ;
4949export { default as ThemeSelectBox } from './theme-select-box.ui' ;
5050export { default as SheetDetailTable } from './sheet-detail-table.ui' ;
51- export * from './table-filter-popover' ;
5251export { default as NoProjectDialogInProjectCreation } from './no-project-dialog-in-project-creation.ui' ;
5352export { default as InfiniteScrollArea } from './infinite-scroll-area.ui' ;
5453export { default as FeedbackImage } from './feedback-image' ;
5554
55+ export * from './table-filter-popover' ;
5656export * from './card.ui' ;
5757export * from './slider.ui' ;
You can’t perform that action at this time.
0 commit comments