Remove verbatim string

This commit is contained in:
smoogipoo 2021-09-30 12:03:34 +09:00
parent 18ab6747f7
commit ea30445efc
1 changed files with 1 additions and 1 deletions

View File

@ -261,7 +261,7 @@ private void onHostChanged(ValueChangedEvent<User> host)
hostAvatar.User = host.NewValue;
hostText.Clear();
hostText.AddText(@"hosted by ");
hostText.AddText("hosted by ");
if (host.NewValue != null)
hostText.AddUserLink(host.NewValue);
}