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 07:23:49 +00:00
committed by GitHub
parent a392b2be0c
commit ec0a68ec88
3 changed files with 3 additions and 3 deletions
+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!"
)