EndpointManager

This commit is contained in:
Sedat ÖZTÜRK 2025-10-31 14:02:19 +03:00
parent 05b9f5f4a8
commit 8daf982119
2 changed files with 4 additions and 4 deletions

View file

@ -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

View file

@ -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>
)