File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
apps/frontend/src/components/launches Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ import { TagsComponent } from './tags.component';
6161import { RepeatComponent } from '@gitroom/frontend/components/launches/repeat.component' ;
6262import { MergePost } from '@gitroom/frontend/components/launches/merge.post' ;
6363import { useT } from '@gitroom/react/translation/get.transation.service.client' ;
64- import { CreatePostDto } from '@gitroom/nestjs-libraries/dtos/posts/create.post.dto' ;
64+ import { type CreatePostDto } from '@gitroom/nestjs-libraries/dtos/posts/create.post.dto' ;
6565import { uniq } from 'lodash' ;
6666import { SetContext } from '@gitroom/frontend/components/launches/set.context' ;
6767function countCharacters ( text : string , type : string ) : number {
Original file line number Diff line number Diff line change 11import { createContext , useContext } from 'react' ;
2- import { CreatePostDto } from '@gitroom/nestjs-libraries/dtos/posts/create.post.dto' ;
2+ import { type CreatePostDto } from '@gitroom/nestjs-libraries/dtos/posts/create.post.dto' ;
33
44export const SetContext = createContext < { set ?: CreatePostDto } > ( { } ) ;
55export const useSet = ( ) => useContext ( SetContext ) ;
You can’t perform that action at this time.
0 commit comments