Skip to content

Commit

Permalink
fix: Fix missing space
Browse files Browse the repository at this point in the history
Just a minor fix to fix a missing space in the debug message.
  • Loading branch information
mrousavy committed Apr 29, 2024
1 parent 2168e3f commit 207fa75
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export function getEnforcing<T: TurboModule>(name: string): T {
'Verify that a module by this name is registered in the native binary.';

if (shouldReportDebugInfo()) {
message += 'Bridgeless mode: ' + (isBridgeless() ? 'true' : 'false') + '. ';
message += ' Bridgeless mode: ' + (isBridgeless() ? 'true' : 'false') + '. ';
message +=
'TurboModule interop: ' +
(isTurboModuleInteropEnabled() ? 'true' : 'false') +
Expand Down

0 comments on commit 207fa75

Please sign in to comment.