We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57424ed commit 4469a2cCopy full SHA for 4469a2c
Samples/Tutorials/Projections/index.ts
@@ -39,6 +39,6 @@ import { DishPrepared } from './DishPrepared';
39
client.logger.info(`The kitchen has prepared ${name} ${numberOfTimesPrepared} times`);
40
}
41
42
- const chef = await client.projections.forTenant(TenantId.development).get<Chef>(Chef, 'Mrs. Tex Mex');
+ const chef = await client.projections.forTenant(TenantId.development).get(Chef, 'Mrs. Tex Mex');
43
client.logger.info(`${chef.name} has prepared ${chef.dishes.join(', ')}`);
44
})();
0 commit comments