@@ -13,12 +13,12 @@ import {translateLocal} from '@libs/Localize';
1313import { getIOUActionForReportID } from '@libs/ReportActionsUtils' ;
1414import PureReportActionItem from '@pages/home/report/PureReportActionItem' ;
1515import CONST from '@src/CONST' ;
16+ import type { TranslationPaths } from '@src/languages/types' ;
1617import * as ReportActionUtils from '@src/libs/ReportActionsUtils' ;
1718import ONYXKEYS from '@src/ONYXKEYS' ;
1819import type { ReportAction } from '@src/types/onyx' ;
1920import type { OriginalMessage } from '@src/types/onyx/ReportAction' ;
2021import type ReportActionName from '@src/types/onyx/ReportActionName' ;
21- import type { TranslationPaths } from '@src/languages/types' ;
2222import waitForBatchedUpdatesWithAct from '../utils/waitForBatchedUpdatesWithAct' ;
2323import wrapOnyxWithWaitForBatchedUpdates from '../utils/wrapOnyxWithWaitForBatchedUpdates' ;
2424
@@ -136,7 +136,7 @@ describe('PureReportActionItem', () => {
136136 }
137137 const [ , textBeforeLink , , linkText ] = match ;
138138 return { textBeforeLink, linkText} ;
139- }
139+ } ;
140140
141141 it . each ( testCases ) ( '$testTitle' , async ( { actionName, originalMessageExtras, translationKey} ) => {
142142 const action = createReportAction ( actionName , originalMessageExtras ) ;
@@ -147,7 +147,7 @@ describe('PureReportActionItem', () => {
147147
148148 const parsedText = parseTextWithTrailingLink ( translateLocal ( translationKey as TranslationPaths ) ) ;
149149 if ( ! parsedText ) {
150- throw new Error ( " Text cannot be parsed, translation failed" ) ;
150+ throw new Error ( ' Text cannot be parsed, translation failed' ) ;
151151 }
152152
153153 const { textBeforeLink, linkText} = parsedText ;
0 commit comments