Skip to content

Commit 9de98df

Browse files
Hotfix: Add missing types
1 parent 9ec34f6 commit 9de98df

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/SiteInfoExtender.jsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ const SiteInfoExtender = ({ site }) => {
9494
value={rootPath}
9595
className='inputText'
9696
onChange={event => {
97-
// setRootPath(event.target.value);
9897
setState({ rootPath: event.target.value });
9998
}}
10099
/>
@@ -104,7 +103,6 @@ const SiteInfoExtender = ({ site }) => {
104103
value={imageURL}
105104
className='inputText'
106105
onChange={event => {
107-
// setImageURL( event.target.value );
108106
setState({ imageURL: event.target.value });
109107
}}
110108
/>

src/main.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
// https://getflywheel.github.io/local-addon-api/modules/_local_main_.html
22
import { getServiceContainer, SiteData } from '@getflywheel/local/main';
33

4+
import { MultiSite } from '@getflywheel/local';
5+
46
const ServiceContainer = getServiceContainer();
57

68
export default function (context) {

0 commit comments

Comments
 (0)