Skip to content

Commit

Permalink
chore: fixed TS
Browse files Browse the repository at this point in the history
  • Loading branch information
kobezzza committed Jan 17, 2024
1 parent 22cc4bf commit f8e4c95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/friends/async-render/helpers/render.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export function addRenderTask(
): Promise<void> {
const
$a = this.async,
group = opts.group ?? 'asyncComponents';
group = (Object.isFunction(opts.group) ? opts.group() : opts.group) ?? 'asyncComponents';

return new SyncPromise((resolve, reject) => {
const taskDesc = {
Expand Down

0 comments on commit f8e4c95

Please sign in to comment.