fix(waitlist): fix timeOfDay logic, typo, and add audienceId

Co-authored-by: Ona <no-reply@ona.com>
This commit is contained in:
2026-03-08 02:37:34 +00:00
parent 74c052393a
commit 42e40da3db
2 changed files with 14 additions and 15 deletions

View File

@@ -12,17 +12,18 @@ export interface SystemMessage {
export type Message = UserMessage | SystemMessage
function timeOfDay() {
const now = new Date()
const hours = now.getHours()
if (hours >= 6 && hours <= 9) {
const hours = new Date().getHours()
if (hours >= 5 && hours < 12) {
return "morning"
} else if (hours >= 12 && hours < 18) {
return "afternoon"
} else if (hours >= 18 && hours < 22) {
return "evening"
} else if (hours > 9 || hours <= 4) {
return "night"
}
return "day"
return "night"
}
export const INITLAL_MESSAGES: Message[] = [
export const INITIAL_MESSAGES: Message[] = [
{
role: "user",
message: "Who are you?",

View File

@@ -7,7 +7,7 @@ import { Streamdown } from "streamdown"
import { ChatBox } from "~/chat/chat-box"
import {
duplicateEmailMessage,
INITLAL_MESSAGES,
INITIAL_MESSAGES,
troubleMessage,
waitListJoinedMessage,
type Message,
@@ -62,7 +62,10 @@ export async function action({ request }: Route.ActionArgs) {
const resend = new Resend(process.env.RESEND_API_KEY)
const audienceId = process.env.RESEND_AUDIENCE_ID!
const dup = await resend.contacts.get({
audienceId,
email,
})
if (dup.data) {
@@ -70,13 +73,8 @@ export async function action({ request }: Route.ActionArgs) {
}
const res = await resend.contacts.create({
audienceId,
email,
segments: [
{
// resend segment id for "Waitlist" segment
id: "b80fb036-74a1-4f7d-bca5-2c035b696071",
},
],
})
if (res.error) {
@@ -101,7 +99,7 @@ export async function action({ request }: Route.ActionArgs) {
}
export default function Home() {
const [messages, setMessages] = useState<Message[]>(INITLAL_MESSAGES)
const [messages, setMessages] = useState<Message[]>(INITIAL_MESSAGES)
const [emailSent, setEmailSent] = useState("")
const [isAnimatingSend, setIsAnimatingSend] = useState(false)
const [logoState, setLogoState] = useState<TAnimatedLogoState>(AnimatedLogoState.Idle)