We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bacefa1 commit 215039aCopy full SHA for 215039a
src/Glide.ts
@@ -96,7 +96,7 @@ export class Glide {
96
const response = await this.with(props).get(`/apps`);
97
if (response.status !== 200) return undefined;
98
const { data: apps }: { data: IDName[] } = await response.json();
99
- return apps.map(idName => this.app({ ...idName }));
+ return apps.map(idName => this.app({ ...idName, ...props }));
100
}
101
102
/**
0 commit comments