Fix a typo

This commit is contained in:
zontreck 2024-05-16 02:26:06 -07:00
parent ad4b7fc4e7
commit a0f0e95043
6 changed files with 118 additions and 37 deletions

View file

@ -4,6 +4,7 @@ import 'package:dio/dio.dart';
import 'package:libac_flutter/nbt/impl/CompoundTag.dart';
import 'package:libac_flutter/utils/Hashing.dart';
import 'package:zontreck/Packets.dart';
import 'package:zontreck/pages/OpenSim.dart';
enum APIEndpoint {
SetupCheck(script: "SetupCheck.php", path: "/ac/home/supports/"),
@ -66,6 +67,8 @@ class Settings {
String displayName = "";
int totalGridUsers = 0;
late User currentUser;
bool get hasUsers => totalGridUsers != 0;
bool get hasNoUsers => totalGridUsers == 0;