From 87208b56fa3b5ec14452cb080fc5023121041d46 Mon Sep 17 00:00:00 2001
From: mathieuprog <5883963+mathieuprog@users.noreply.github.com>
Date: Wed, 29 Jun 2022 14:12:57 +0200
Subject: [PATCH] Add missing type assertion
---
ts-jest/src/index.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ts-jest/src/index.tsx b/ts-jest/src/index.tsx
index 97be0b9..8fa57b4 100644
--- a/ts-jest/src/index.tsx
+++ b/ts-jest/src/index.tsx
@@ -2,4 +2,4 @@ import { render } from 'solid-js/web';
import { TodoList } from './todo-list';
-render(() => , document.getElementById('root'));
+render(() => , document.getElementById('root') as HTMLElement);