Loading...
Started by Noman Akthar • Jun 18, 2025 1:33 PM
Total Replies
2
Participants
2
Activity
Quiet
Duration
1:33 PM
Thread starter
import React from "react";import { Text, hubspot } from "@hubspot/ui-extensions";hubspot.extend(({ context }) => { console.log("FULL CONTEXT:", JSON.stringify(context, null, 2)); const properties = context.crm?.object?.properties; return ( <> <Text format={{ fontWeight: "bold" }}>Contact Info</Text> <Text> Name: {properties?.firstname || "N/A"} {properties?.lastname || ""} </Text> <Text>Email: {properties?.email || "N/A"}</Text> </> );});2 messages in thread