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
@@ -90,7 +90,7 @@ type ModuleOptions = {
capitalize?: boolean
}
export default function helloWorldLoader({
export default async function helloWorldLoader({
options,
}: LoaderOptions<ModuleOptions>) {