Dynamic output in Quarto/RMD in latest version of RStudio is not working

I just updated my Windows RStudio to version 2026.01.0 Build 392. In older versions of RStudio, printing a table/data frame/etc. would produce an interactive output below the code chunk, as so:

In the latest version is produces a static output, as so:

I can't find any setting to enable this feature. Please don't tell me my favorite feature of RStudio has been deprecated!

For a reprex: in a QMD:


title: "RStudio Output Test"

print(mtcars)

As an update: I discovered that enclosing an object in parentheses will enable the dynamic output, but calling the print function will not, as so: