Add missing type

This commit is contained in:
Travis Ralston 2021-09-06 22:37:21 -06:00
parent b9001c3e11
commit 615a432eda

View file

@ -66,7 +66,7 @@ export default class WidgetOpenIDPermissionsDialog extends React.PureComponent<I
this.props.onFinished(allowed);
}
private onRememberSelectionChange = (newVal) => {
private onRememberSelectionChange = (newVal: boolean) => {
this.setState({ rememberSelection: newVal });
};