From 06be69f8dff3a5127fa939652ea52ea1aa3ec8b8 Mon Sep 17 00:00:00 2001 From: Julie Turner Date: Wed, 29 Nov 2023 17:28:35 -0500 Subject: [PATCH] Addresses #2842 - Fix Bug in documentation for storage entity. --- docs/sp/tenant-properties.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/sp/tenant-properties.md b/docs/sp/tenant-properties.md index ee2f2cc4b..2ea760adb 100644 --- a/docs/sp/tenant-properties.md +++ b/docs/sp/tenant-properties.md @@ -27,9 +27,10 @@ await w.setStorageEntity("Test2", "Value 2", "description", "comments"); This method can be used from any web to retrieve values previously set. ```TypeScript -import { spfi, SPFx, IStorageEntity } from "@pnp/sp"; +import { spfi, SPFx } from "@pnp/sp"; import "@pnp/sp/appcatalog"; import "@pnp/sp/webs"; +import { IStorageEntity } from "@pnp/sp/webs"; const sp = spfi(...);