Skip to content

Commit 589c5d5

Browse files
authored
refactor: Move icons, remove unused files (#7171)
1 parent e122a95 commit 589c5d5

242 files changed

Lines changed: 225 additions & 2065 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

frontend/common/base/format-base.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

frontend/common/base/utils-base.js

Lines changed: 0 additions & 31 deletions
This file was deleted.

frontend/common/hooks/useMediaQuery.tsx

Lines changed: 0 additions & 20 deletions
This file was deleted.

frontend/common/hooks/usePageTracking.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { useEffect } from 'react'
33
/**
44
* Options for configuring page tracking behavior.
55
*/
6-
export type PageTrackingOptions = {
6+
type PageTrackingOptions = {
77
/** The page constant name from Constants.pages */
88
pageName: string
99
/** Context data for tracking and storage persistence */

frontend/common/providers/ProjectProvider.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export type CreateEnvType = (data: {
1111
cloneFeatureStatesAsync?: boolean
1212
metadata: Environment['metadata']
1313
}) => void
14-
export type ProjectProviderType = {
14+
type ProjectProviderType = {
1515
children: (props: {
1616
createEnv: CreateEnvType
1717
deleteEnv: typeof AppActions.deleteEnv

frontend/common/service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { StoreStateType } from './store'
77
const Project = require('./project')
88
const _data = require('./data/base/_data.js')
99

10-
export const baseApiOptions = (queryArgs?: Partial<FetchBaseQueryArgs>) => {
10+
const baseApiOptions = (queryArgs?: Partial<FetchBaseQueryArgs>) => {
1111
const res: Pick<
1212
CreateApiOptions<any, any, any, any>,
1313
| 'baseQuery'

0 commit comments

Comments
 (0)