docs: fix helloWorldLoader function definition (#8429)

- Make helloWorldLoader async to follow the type definition

Closes #8428
This commit is contained in:
Viktor Bakurin
2024-08-05 08:23:49 +01:00
committed by GitHub
parent a392b2be0c
commit ec0a68ec88
3 changed files with 3 additions and 3 deletions
@@ -56,7 +56,7 @@ import {
} from "@medusajs/modules-sdk"
import { Logger } from "@medusajs/medusa"
export default function helloWorldLoader({
export default async function helloWorldLoader({
container,
}: LoaderOptions) {
const logger: Logger = container.resolve("logger")
@@ -90,7 +90,7 @@ type ModuleOptions = {
capitalize?: boolean
}
export default function helloWorldLoader({
export default async function helloWorldLoader({
options,
}: LoaderOptions<ModuleOptions>) {
+1 -1
View File
@@ -19,7 +19,7 @@ A loader is created in a TypeScript or JavaScript file under a module's `loaders
For example, create the file `src/modules/hello/loaders/hello-world.ts` with the following content:
```ts title="src/modules/hello/loaders/hello-world.ts"
export default function helloWorldLoader() {
export default async function helloWorldLoader() {
console.log(
"[HELLO MODULE] Just started the Medusa application!"
)