Merge pull request 'fix Provider bug with reloading message panes' (#20) from newtrunk into trunk

Reviewed-on: #20
This commit is contained in:
Sarah Jamie Lewis 2021-03-17 12:35:28 -07:00
commit de340b0899
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ class _ContactRowState extends State<ContactRow> {
builder: (BuildContext builderContext) {
return MultiProvider(
providers: [
ChangeNotifierProvider<ProfileInfoState>(create: (_) => Provider.of<ProfileInfoState>(context)),
Provider.value(value: Provider.of<ProfileInfoState>(context)),
],
child: MessageView(conversationHandle: handle),
);