This should be simple, so I assume I am missing something obvious. But I don't see why my chunk is executing when it shouldn't.
---
title: "Test Conditional Execution"
author: "Alan Jackson"
date: '2022-04-05'
output: html_document
params:
condition: FALSE
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
eval_condition <- params$condition
```
```{r, condition, eval=eval_condition}
params$condition
eval_condition
print(paste("I am", params$condition))
```
[1] FALSE
[1] FALSE
[1] "I am FALSE"