From f73d9ad7d0c0a8227a34b3982e0716ca4f5e3a91 Mon Sep 17 00:00:00 2001 From: Amruth Pillai Date: Tue, 16 Mar 2021 08:44:02 +0530 Subject: [PATCH] Fixed type in StorageContext.js Thank you kind stranger. --- src/contexts/StorageContext.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/contexts/StorageContext.js b/src/contexts/StorageContext.js index 8263206e..28d4237d 100644 --- a/src/contexts/StorageContext.js +++ b/src/contexts/StorageContext.js @@ -33,7 +33,7 @@ const StorageProvider = ({ children }) => { if (file.size > 2097152) { toast.error( - "Your image seems to be bigger than 2 MB. That's way too much. Maybe consider reducing it's size?", + "Your image seems to be bigger than 2 MB. That's way too much. Maybe consider reducing its size?", ); return null; }