vreezy
vreezy
My Workaround $web = Get-PnPWeb -Connection $site_connection -ErrorVariable error_web -ErrorAction SilentlyContinue; $path = $web.ServerRelativeUrl + "/SitePages/Home.aspx"; $file = $web.GetFileByServerRelativeUrl($path) $file.DeleteObject() Invoke-PnPQuery -RetryCount 5 -Connection $site_connection; BTW Pls enable Unit-Test again....
Btw my workaround: ``` useEffect(() => { if(window.location.hash.indexOf("#%") > -1 ) { window.location.hash = ""; } }); ```
i have the same problem with hashrouter -> `#%2F7` **What version of React Router are you using?** 6.0.2 **Steps to Reproduce** ``` ``` **Actual Behavior** Browser shows blank page console:...
> Can you elaborate on the use-case in which your app is ending up at a malformed hash path like `#abc` instead of `#/abc`? Sharepoint online. I used the Router...
> It feels fragile to be using a `HashRouter` if you have other third party libraries also setting hashes (let alone setting them to invalid values w.r.t React Router)? That...
> @vreezy Can you point me to where the docs state that a wrong hash should route to `*`? Maybe we just need to get that updated. > > @ruslanvyaznikov...