Skip to content

Commit

Permalink
PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsenko committed Apr 3, 2024
1 parent cc72df9 commit ad493b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/realm_dart/lib/src/init.dart
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ DynamicLibrary _openRealmLib() {
throw RealmError(
[
'Could not open $libName. Tried:',
(candidatePaths.join('\n')),
candidatePaths.map((p) => '- "$p"').join('\n'),
isFlutterPlatform //
? 'Did you forget to add a dependency on realm package?'
: 'Did you forget to run `dart run realm_dart install`?'
? 'Hint: Did you forget to add a dependency on the realm package?'
: 'Hint: Did you forget to run `dart run realm_dart install`?'
].join('\n'),
);
}
Expand Down

0 comments on commit ad493b1

Please sign in to comment.