Remove unnecessary log in helpview (#951)

This commit is contained in:
Evan Simkowitz 2024-10-03 20:54:55 -07:00 committed by GitHub
parent 62a20b2dd9
commit fe06e0d93e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,7 +19,6 @@ function makeHelpViewModel() {
function HelpView({}: { model: HelpViewModel }) {
const [url] = useState(() => getApi().getDocsiteUrl());
console.log(url);
return (
<div className="help-view">
<webview className="docsite-webview" src={url} />