diff --git a/apps/dashboard/src/app/(dashboard)/profile/[addressOrEns]/components/PublishedContractTable.tsx b/apps/dashboard/src/app/(dashboard)/profile/[addressOrEns]/components/PublishedContractTable.tsx index c051cfbd979..6ed56749e14 100644 --- a/apps/dashboard/src/app/(dashboard)/profile/[addressOrEns]/components/PublishedContractTable.tsx +++ b/apps/dashboard/src/app/(dashboard)/profile/[addressOrEns]/components/PublishedContractTable.tsx @@ -87,7 +87,7 @@ export function PublishedContractTable(props: PublishedContractTableProps) { accessor: (row) => row.description, // biome-ignore lint/suspicious/noExplicitAny: FIXME Cell: (cell: any) => ( - + {cell.value} ), diff --git a/apps/dashboard/src/app/nebula-app/(app)/components/ChatBar.tsx b/apps/dashboard/src/app/nebula-app/(app)/components/ChatBar.tsx index ae93e963366..33245b51901 100644 --- a/apps/dashboard/src/app/nebula-app/(app)/components/ChatBar.tsx +++ b/apps/dashboard/src/app/nebula-app/(app)/components/ChatBar.tsx @@ -23,6 +23,10 @@ export function Chatbar(props: { value={message} onChange={(e) => setMessage(e.target.value)} onKeyDown={(e) => { + // ignore if shift key is pressed to allow entering new lines + if (e.shiftKey) { + return; + } if (e.key === "Enter" && !props.isChatStreaming) { setMessage(""); props.sendMessage(message); diff --git a/apps/dashboard/src/app/team/[team_slug]/(team)/~/settings/members/InviteSection.tsx b/apps/dashboard/src/app/team/[team_slug]/(team)/~/settings/members/InviteSection.tsx index 2208d21fa36..dcbec3a5e24 100644 --- a/apps/dashboard/src/app/team/[team_slug]/(team)/~/settings/members/InviteSection.tsx +++ b/apps/dashboard/src/app/team/[team_slug]/(team)/~/settings/members/InviteSection.tsx @@ -25,7 +25,7 @@ export function InviteSection(props: { }) { const teamPlan = getValidTeamPlan(props.team); let bottomSection: React.ReactNode = null; - const inviteEnabled = teamPlan !== "free" && props.userHasEditPermission; + const inviteEnabled = false; // teamPlan !== "free" && props.userHasEditPermission; if (teamPlan === "free") { bottomSection = ( @@ -62,7 +62,12 @@ export function InviteSection(props: { } else { bottomSection = (
-