chore(level_display_name): don't display bot learning stuff (#1999)
This commit is contained in:
parent
c67c35e4f0
commit
5b99c935a8
1 changed files with 5 additions and 0 deletions
|
|
@ -1,3 +1,4 @@
|
|||
import 'package:fluffychat/pangea/bot/utils/bot_name.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import 'package:fluffychat/pangea/user/models/profile_model.dart';
|
||||
|
|
@ -38,6 +39,10 @@ class LevelDisplayNameState extends State<LevelDisplayName> {
|
|||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
if(widget.userId == BotName.byEnvironment){
|
||||
return const SizedBox();
|
||||
}
|
||||
|
||||
return Padding(
|
||||
padding: const EdgeInsets.symmetric(
|
||||
horizontal: 8.0,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue