From 4fd69c02a3e7b581bb9229865336c315153f3b18 Mon Sep 17 00:00:00 2001 From: Dustin Mierau Date: Tue, 19 Dec 2023 20:38:13 -0800 Subject: Beginnings of a UI for macOS as well as some visual changes to iOS client. :) --- Hotline/Models/User.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Hotline/Models/User.swift') diff --git a/Hotline/Models/User.swift b/Hotline/Models/User.swift index 9011e56..1a921e2 100644 --- a/Hotline/Models/User.swift +++ b/Hotline/Models/User.swift @@ -1,7 +1,7 @@ import SwiftUI struct UserStatus: OptionSet { - let rawValue: Int + let rawValue: UInt static let idle = UserStatus(rawValue: 1 << 0) static let admin = UserStatus(rawValue: 1 << 1) -- cgit