Input System Package Does not show UI in the Project settings. Gives NullReferenceException in the console if Attempted to access

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);
}

Immediate reply comments to add more pictures (because new users are limited to 1 in a post/comment body)


Empty Input System Package

Input System Package / Settings, which is shown


Screenshot of the code. Line 204 in InputActionsEditorSettingsProvider