Sort listings table by most recent date; add SSH deploy fix to TODO
Some checks failed
Deploy stAndrews / deploy (push) Failing after 4s

This commit is contained in:
2026-04-16 06:34:56 -04:00
parent bf5f736cf3
commit 5fbff45a2e
2 changed files with 2 additions and 1 deletions

View File

@@ -4,7 +4,7 @@ create_server <- function(input, output, session) {
# Load data
owners <- readRDS(app_config$data_paths$owners)
listings <- readRDS(app_config$data_paths$listings) |>
arrange(price_per_sqft) |>
arrange(desc(listed_date)) |>
mutate(
price_fmt = scales::dollar(price),
ppsf_fmt = scales::dollar(price_per_sqft)