Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@ export default function FeatureLayout({ children, params }: Props) {
}
}, [children, codeFiles, readme, view])

return <div className="bg-white rounded-lg overflow-hidden w-full h-full">{content}</div>;
return <div className="bg-white rounded-lg w-full h-full">{content}</div>;
}
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ const INITIAL_STATE: RecipeAgentState = {
};

function Recipe() {
const { isMobile } = useMobileView();
const { state: agentState, setState: setAgentState } = useCoAgent<RecipeAgentState>({
name: "shared_state",
initialState: INITIAL_STATE,
Expand Down Expand Up @@ -368,6 +369,7 @@ function Recipe() {
return (
<form
data-testid="recipe-card"
style={isMobile ? { marginBottom: "100px" } : {}}
className="recipe-card">
{/* Recipe Title */}
<div className="recipe-header">
Expand Down
Loading
Loading