Skip to content

Commit

Permalink
fix: add missing account argument specification for create*App
Browse files Browse the repository at this point in the history
  • Loading branch information
ry-itto committed Jun 20, 2022
1 parent 1de0776 commit 4987250
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/flutterfire_cli/lib/src/firebase.dart
Expand Up @@ -278,19 +278,22 @@ Future<FirebaseApp> findOrCreateFirebaseApp({
project: project,
displayName: displayNameWithPlatform,
packageName: packageNameOrBundleIdentifier!,
account: account,
);
break;
case kIos:
createFirebaseAppFuture = createAppleApp(
project: project,
displayName: displayNameWithPlatform,
bundleId: packageNameOrBundleIdentifier!,
account: account,
);
break;
case kWeb:
createFirebaseAppFuture = createWebApp(
project: project,
displayName: displayNameWithPlatform,
account: account,
);
break;
default:
Expand Down

0 comments on commit 4987250

Please sign in to comment.