Skip to content
Snippets Groups Projects
Commit ef40173e authored by vjrj's avatar vjrj
Browse files

Added named param

parent f986fde1
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,7 @@ class _CesiumAddDialogState extends State<CesiumAddDialog> {
@override
Widget build(BuildContext context) {
return FutureBuilder<Contact>(
future: getProfile(widget.publicKey, true),
future: getProfile(widget.publicKey, onlyCPlusProfile: true),
builder: (BuildContext context, AsyncSnapshot<Contact> snapshot) {
if (snapshot.hasData) {
return showDialog(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment