fix(ct): solid typecheck (#22799)

partial fix for: https://github.com/microsoft/playwright/issues/22795
related to: https://github.com/ryansolid/dom-expressions/pull/244
This commit is contained in:
Sander 2023-05-03 22:53:46 +02:00 committed by GitHub
parent b868f3a9d0
commit 7fce2df391
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,8 @@ import DashboardPage from './pages/DashboardPage';
export default function App() {
return <>
<header>
<img src={logo} alt="logo" width={125} height={125} />
{ /* 2023-05-03: remove elementtiming and fetchpriority from img when this issue is resolved: https://github.com/ryansolid/dom-expressions/pull/244 */}
<img src={logo} alt="logo" width={125} height={125} elementtiming="0" fetchpriority="auto" />
<A href="/">Login</A>
<A href="/dashboard">Dashboard</A>
</header>