diff --git a/files/en-us/web/api/storage_access_api/using/index.md b/files/en-us/web/api/storage_access_api/using/index.md index 03f8380725b6035..828be717a497829 100644 --- a/files/en-us/web/api/storage_access_api/using/index.md +++ b/files/en-us/web/api/storage_access_api/using/index.md @@ -74,7 +74,10 @@ async function handleCookieAccess() { if (permission.state === "granted") { // If so, you can just call requestStorageAccess() without a user interaction, // and it will resolve automatically. - const handle = await document.requestStorageAccess({cookies: true, localStorage: true}); + const handle = await document.requestStorageAccess({ + cookies: true, + localStorage: true, + }); doThingsWithLocalStorage(handle); doThingsWithCookies(); } else if (permission.state === "prompt") {