Remove unused reference

This commit is contained in:
Pat Hartl 2023-03-17 02:08:15 -05:00
parent 4f775013a6
commit 8c1e08d49f

View file

@ -136,7 +136,6 @@
Modal FileSelectorModal;
private string value = "blazor";
private ConfirmRef _confirmRef;
private Game Game;
private KeysEditor? KeysEditor;
@ -267,12 +266,4 @@
}
}
}
private async Task CloseModal()
{
if (_confirmRef != null)
{
await _confirmRef.CloseAsync();
}
}
}