From 7e8075f5b6504d62862e404fc7b7f0c9decedefc Mon Sep 17 00:00:00 2001 From: Calvin Cestari Date: Mon, 8 Apr 2024 15:07:33 -0700 Subject: [PATCH] Use new note syntax --- docs/source/caching/cache-setup.mdx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/source/caching/cache-setup.mdx b/docs/source/caching/cache-setup.mdx index 87f09eab2..3db34f736 100644 --- a/docs/source/caching/cache-setup.mdx +++ b/docs/source/caching/cache-setup.mdx @@ -62,9 +62,11 @@ A few examples of this are: For data that you want to persist between application runs, the `SQLiteNormalizedCache` may fit your needs. -> **Note: Caching Sensitive Data** -> -> When persisting cache data to disk, be sure to consider if any sensitive data is being written to the cache. Cache data is stored in plain-text and can be retrieved from the device. You may need to sanitize your cache data or encrypt the cache file. + + +When persisting cache data to disk, be sure to consider if any sensitive data is being written to the cache. Cache data is stored in plain-text and can be retrieved from the device. You may need to sanitize your cache data or encrypt the cache file. + + ### Setup