Skip to content

Commit a307cab

Browse files
authored
chore: Remove generated comments (#6093)
1 parent 5f1a8c0 commit a307cab

36 files changed

+37
-37
lines changed

frontend/common/providers/Permission.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { useGetPermissionQuery } from 'common/services/usePermission'
33
import { PermissionLevel } from 'common/types/requests'
44
import AccountStore from 'common/stores/account-store'
55
import intersection from 'lodash/intersection'
6-
import { cloneDeep } from 'lodash' // we need this to make JSX compile
6+
import { cloneDeep } from 'lodash'
77

88
type PermissionType = {
99
id: any

frontend/web/components/AuditLog.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React, { FC, ReactNode, useEffect, useRef, useState } from 'react' // we need this to make JSX compile
1+
import React, { FC, ReactNode, useEffect, useRef, useState } from 'react'
22
import Utils from 'common/utils/utils'
33
import { AuditLogItem, Environment } from 'common/types/responses'
44
import { useGetAuditLogsQuery } from 'common/services/useAuditLog'

frontend/web/components/CondensedRow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { FC, PropsWithChildren } from 'react' // we need this to make JSX compile
1+
import { FC, PropsWithChildren } from 'react'
22

33
type CondensedColumnType = PropsWithChildren<{}>
44

frontend/web/components/ConnectedGroupSelect.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React, { FC } from 'react'
22
import GroupSelect, { GroupSelectType } from './GroupSelect'
33
import { useGetGroupSummariesQuery } from 'common/services/useGroupSummary'
44
import { IonIcon } from '@ionic/react'
5-
import { close } from 'ionicons/icons' // we need this to make JSX compile
5+
import { close } from 'ionicons/icons'
66

77
type ConnectedGroupSelectType = GroupSelectType & {
88
orgId: string

frontend/web/components/GoogleButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React, { FC } from 'react' // we need this to make JSX compile
1+
import React, { FC } from 'react'
22
import { TokenResponse, useGoogleLogin } from '@react-oauth/google'
33
import Button from './base/forms/Button'
44

frontend/web/components/IdentitySelect.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React, { FC, useMemo } from 'react'
2-
import { Identity, Res } from 'common/types/responses' // we need this to make JSX compile
2+
import { Identity, Res } from 'common/types/responses'
33
import { filter, find } from 'lodash'
44
import { useGetIdentitiesQuery } from 'common/services/useIdentity'
55
import useInfiniteScroll from 'common/useInfiniteScroll'

frontend/web/components/MyGroupsSelect.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { FC } from 'react'
22
import { useGetMyGroupsQuery } from 'common/services/useMyGroup'
3-
import GroupSelect, { GroupSelectType } from './GroupSelect' // we need this to make JSX compile
3+
import GroupSelect, { GroupSelectType } from './GroupSelect'
44

55
type MyGroupsSelectType = Omit<GroupSelectType, 'groups'> & {
66
orgId: string | number

frontend/web/components/MyRoleSelect.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { FC } from 'react'
22
import { useGetRolesQuery } from 'common/services/useRole'
33
import RolesSelect, { RoleSelectType } from './RolesSelect'
4-
import { PermissionLevel } from 'common/types/requests' // we need this to make JSX compile
4+
import { PermissionLevel } from 'common/types/requests'
55

66
type MyRoleSelectType = Omit<RoleSelectType, 'roles'> & {
77
orgId: string | number

frontend/web/components/NewVersionWarning.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { FC, useMemo } from 'react'
22
import { useGetFeatureVersionsQuery } from 'common/services/useFeatureVersion'
33
import moment from 'moment'
4-
import ErrorMessage from './ErrorMessage' // we need this to make JSX compile
4+
import ErrorMessage from './ErrorMessage'
55

66
type NewVersionWarningType = {
77
date: string

frontend/web/components/PageTitle.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { FC, PropsWithChildren, ReactNode } from 'react'
2-
import classNames from 'classnames' // we need this to make JSX compile
2+
import classNames from 'classnames'
33

44
type PageTitleType = PropsWithChildren<{
55
title: ReactNode

0 commit comments

Comments
 (0)