We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42fea8b commit 2ca263cCopy full SHA for 2ca263c
lib/plugin/metadata-loader.ts
@@ -4,7 +4,7 @@ export class MetadataLoader {
4
private static readonly refreshHooks = new Array<() => void>();
5
6
static addRefreshHook(hook: () => void) {
7
- return MetadataLoader.refreshHooks.unshift(hook);
+ return MetadataLoader.refreshHooks.push(hook);
8
}
9
10
async load(metadata: Record<string, any>) {
0 commit comments