Skip to content

Commit

Permalink
Remove not needed warn
Browse files Browse the repository at this point in the history
  • Loading branch information
cbravobernal committed May 13, 2024
1 parent 414e15b commit f587e3d
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions packages/interactivity/src/hooks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -280,11 +280,7 @@ const resolve = ( path, namespace ) => {
try {
// TODO: Support lazy/dynamically initialized stores
return path.split( '.' ).reduce( ( acc, key ) => acc[ key ], current );
} catch ( e ) {
warn(
`The path "${ path }" could not be resolved in the "${ namespace }" store.`
);
}
} catch ( e ) {}
};

// Generate the evaluate function.
Expand Down

0 comments on commit f587e3d

Please sign in to comment.