From f567255ccac3aa41126f905b4382e112ce9dd746 Mon Sep 17 00:00:00 2001 From: Barrett Burnworth <77902178+pantheredeye@users.noreply.github.com> Date: Fri, 6 Sep 2024 10:23:31 -0500 Subject: [PATCH] Correct Note Admonition (#11455) This fix should work. Right now the ::: doesn't close correctly and the note is open for several sections incorrectly. --- docs/docs/uploads.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/docs/uploads.md b/docs/docs/uploads.md index 2f94bb57856e..5e47680c585f 100644 --- a/docs/docs/uploads.md +++ b/docs/docs/uploads.md @@ -176,7 +176,12 @@ This is because Prisma doesn't have a native File type. Instead, we store the fi ### 2. Configuring the Upload savers and Uploads extension To make it easier (and more consistent) dealing with file uploads, Redwood gives you a standardized way of saving your uploads (i.e. write to storage) by using what we call "savers," along with our custom Uploads extension that will handle deletion and updates automatically for you. -:::note The rest of the doc assumes you are running a "Serverful" configuration for your deployments, as it involves the file system. ::: + +:::note + +The rest of the doc assumes you are running a "Serverful" configuration for your deployments, as it involves the file system. + +::: Let's first run the setup command: