Skip to Content

Posts tagged with 0.0.1

Video

Feature: Dynamic Profile URLs

Moving away from rigid, hardcoded database columns to a dynamic array structure future-proofs the application and provides a much better user experience for managing custom links.

Feature: Birthday Field Redesign

Feature: Birthday Field Redesign

Moving from a strict date column to distinct month, day, and year fields is a highly effective way to handle partial user data. It allows users to celebrate their birthdays without forcing them to disclose their exact age. 1. Database Overhaul We are updating the PostgreSQL people table to support

Bugfix: Duplicate Note Creation & Autosave Race Condition

Bugfix: Duplicate Note Creation & Autosave Race Condition

This update resolves a critical race condition between the useAutosave hook and the manual handleSubmit function in NoteForm.tsx. Previously, these two mechanisms operated independently, leading to duplicate database entries (double POST requests) and redundant attachment records when a user saved a note while an autosave timer was pending. The