Relevant information:
Unity Editor Version: 2022.3.50f1
Input System Package Version: 1.11.1
If I open the Project Settings, navigate to Input System Package, No UI shows up and an error is thrown.
The full error
The error is a NullReferenceException occuring in the library whilst trying to CreateUI()
private void CreateUI()
{
var projectSettingsAsset = AssetDatabase.LoadAssetAtPath<VisualTreeAsset>(
InputActionsEditorConstants.PackagePath +
InputActionsEditorConstants.ResourcesPath +
InputActionsEditorConstants.ProjectSettingsUxml);
projectSettingsAsset.CloneTree(m_RootVisualElement); <-- This line
m_RootVisualElement.styleSheets.Add(InputActionsEditorWindowUtils.theme);
}