Skip to content

Commit

Permalink
[labs/ssr-client] Fix for removing @types/web-ie11 dep (#3779)
Browse files Browse the repository at this point in the history
  • Loading branch information
augustjk committed Apr 4, 2023
1 parent 0f6c92f commit 5db7efd
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 5db7efd

Please sign in to comment.