Fix multiple typos in medusa docs (#5854)

This commit is contained in:
Sajarin M
2023-12-13 16:21:48 +05:30
committed by GitHub
parent 07107f3565
commit 4710c8ba7e
22 changed files with 42 additions and 42 deletions

View File

@@ -80,7 +80,7 @@ You can retrieve a list of publishable API keys by sending a request to the [Lis
import { PublishableApiKey } from "@medusajs/medusa"
import { useAdminPublishableApiKeys } from "medusa-react"
const PublishabelApiKeys = () => {
const PublishableApiKeys = () => {
const { publishable_api_keys, isLoading } =
useAdminPublishableApiKeys()
@@ -106,7 +106,7 @@ You can retrieve a list of publishable API keys by sending a request to the [Lis
)
}
export default PublishabelApiKeys
export default PublishableApiKeys
```
</TabItem>