Skip to content

Commit 3661d24

Browse files
authored
fixed error message (#159)
* fixed error message * fixed misspelling * prettier fix
1 parent a3eb533 commit 3661d24

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

plugins/harness-fme-feature-flags/src/components/FMEFeatureList/FMEFeatureList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ function FMEFeatureList() {
334334
},
335335
},
336336
{
337-
title: 'Last Traffic Recieved',
337+
title: 'Last Traffic Received',
338338
field: 'col9',
339339
type: 'date',
340340
customSort: (row1: Partial<TableData>, row2: Partial<TableData>) => {

plugins/harness-fme-feature-flags/src/components/Router.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export const isHarnessFMEFeatureFlagAvailable = (entity: Entity) =>
3434

3535
export const Router = () => {
3636
const { entity } = useEntity();
37-
const requiredAnnotations = ['harnessfme/orgId', 'harnessfme/workspaceId'];
37+
const requiredAnnotations = ['harnessfme/accountId', 'harnessfme/projectId'];
3838

3939
if (!isHarnessFMEFeatureFlagAvailable(entity)) {
4040
return <MissingAnnotationEmptyState annotation={requiredAnnotations} />;

0 commit comments

Comments
 (0)