Skip to content

Commit

Permalink
Try to fix tests failing after merge part 1
Browse files Browse the repository at this point in the history
  • Loading branch information
mhawryluk committed Jan 27, 2025
1 parent 3f2e4ca commit 88c2cf3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/typegpu/src/core/valueProxyUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ export const valueProxyHandler: ProxyHandler<SelfResolvable & Labelled> = {
return Reflect.get(target, prop);
}

if (prop === '~providing') {
return undefined;
}

return new Proxy(
{
'~resolve': (ctx: ResolutionCtx) =>
Expand Down

0 comments on commit 88c2cf3

Please sign in to comment.