Comments, appointments adjustments, fixed some issues

This commit is contained in:
augmentedpotato
2026-04-20 19:19:30 -06:00
parent 1523aef51e
commit 6d593726a5
34 changed files with 402 additions and 104 deletions

View File

@@ -13,6 +13,7 @@ export const SPECIES_EMOJI = {
guinea: "🐹",
};
//Returns an emoji for a given species name, falls back to a paw print
export function getSpeciesEmoji(species) {
if (!species) {
@@ -31,6 +32,7 @@ export function getSpeciesEmoji(species) {
return "🐾";
}
//Returns the CSS class name for a pet's status badge
export function getStatusClass(status) {
if (!status) {
return "";