Skip to content

Commit

Permalink
Fix for removing @types/web-ie11 dep
Browse files Browse the repository at this point in the history
  • Loading branch information
augustjk committed Apr 3, 2023
1 parent a273eb9 commit 2fb885a
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions packages/labs/ssr-client/src/lib/hydrate-lit-html.ts
Expand Up @@ -146,12 +146,7 @@ export const hydrate = (
// templates
const stack: Array<ChildPartState> = [];

const walker = document.createTreeWalker(
container,
NodeFilter.SHOW_COMMENT,
null,
false
);
const walker = document.createTreeWalker(container, NodeFilter.SHOW_COMMENT);
let marker: Comment | null;

// Walk the DOM looking for part marker comments
Expand Down

0 comments on commit 2fb885a

Please sign in to comment.