EndpointManager
This commit is contained in:
parent
05b9f5f4a8
commit
8daf982119
2 changed files with 4 additions and 4 deletions
|
|
@ -45,7 +45,7 @@ interface ParameterInput {
|
|||
description?: string
|
||||
}
|
||||
|
||||
const ApiManager: React.FC = () => {
|
||||
const EndpointManager: React.FC = () => {
|
||||
const { generatedEndpoints } = useEntities()
|
||||
const { translate } = useLocalization()
|
||||
|
||||
|
|
@ -791,4 +791,4 @@ const ApiManager: React.FC = () => {
|
|||
)
|
||||
}
|
||||
|
||||
export default ApiManager
|
||||
export default EndpointManager
|
||||
|
|
@ -1,13 +1,13 @@
|
|||
import React from 'react'
|
||||
import { EntityProvider } from '@/contexts/EntityContext'
|
||||
import ApiManager from '@/components/developerKit/ApiManager'
|
||||
import DeveloperLayout from '@/components/layouts/DeveloperLayout'
|
||||
import EndpointManager from '@/components/developerKit/EndpointManager'
|
||||
|
||||
const EndpointPage: React.FC = () => {
|
||||
return (
|
||||
<DeveloperLayout>
|
||||
<EntityProvider>
|
||||
<ApiManager />
|
||||
<EndpointManager />
|
||||
</EntityProvider>
|
||||
</DeveloperLayout>
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue