Skip to content

Commit

Permalink
[#4069] Fix crash when using some registration backends
Browse files Browse the repository at this point in the history
  • Loading branch information
Viicos committed Mar 28, 2024
1 parent db0dbd3 commit a553409
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ const RegistrationsSummaryList = ({variable, onFieldChange, registrationBackends
const backendInfo = BACKEND_OPTIONS_FORMS[backend.backend];

// Check if the registration backend can be configured from the variables tab...
const configurableFromVariables = backendInfo.configurableFromVariables;
const configurableFromVariables = backendInfo?.configurableFromVariables;
if (
(typeof configurableFromVariables === 'function' &&
!configurableFromVariables(backend.options)) ||
Expand Down

0 comments on commit a553409

Please sign in to comment.