Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libs/domains/services/feature/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export * from './lib/hooks/use-deployment-restrictions/use-deployment-restrictio
export * from './lib/hooks/use-deployment-status/use-deployment-status'
export * from './lib/hooks/use-edit-deployment-restriction/use-edit-deployment-restriction'
export * from './lib/hooks/use-links/use-links'
export * from './lib/hooks/use-env-links/use-env-links'
export * from './lib/hooks/use-environment-links/use-environment-links'
export * from './lib/hooks/use-list-statuses/use-list-statuses'
export * from './lib/hooks/use-running-status/use-running-status'
export * from './lib/hooks/use-service-statuses/use-service-statuses'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jest.mock('../hooks/use-service-type/use-service-type', () => {

const mockUseLinks = jest.fn()

jest.mock('../hooks/use-env-links/use-env-links', () => {
jest.mock('../hooks/use-environment-links/use-environment-links', () => {
return {
...jest.requireActual('../hooks/use-env-links/use-env-links'),
...jest.requireActual('../hooks/use-environment-links/use-environment-links'),
useEnvironmentLinks: () => mockUseLinks(),
}
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
Truncate,
} from '@qovery/shared/ui'
import { pluralize } from '@qovery/shared/util-js'
import { useEnvironmentLinks } from '../hooks/use-env-links/use-env-links'
import { useEnvironmentLinks } from '../hooks/use-environment-links/use-environment-links'
import { useServiceType } from '../hooks/use-service-type/use-service-type'

export interface ServiceLinksPopoverProps extends Pick<PopoverContentProps, 'align' | 'side'> {
Expand Down