Skip to content

Commit

Permalink
chore(level_display_name): don't display bot learning stuff (#1999)
Browse files Browse the repository at this point in the history
  • Loading branch information
wcjord authored Feb 28, 2025
1 parent c67c35e commit 5b99c93
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lib/pangea/analytics_misc/level_display_name.dart
Original file line number Diff line number Diff line change
@@ -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';
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 5b99c93

Please sign in to comment.