@stoker-platform/web-app 0.5.134 → 0.5.135

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @stoker-platform/web-app
2
2
 
3
+ ## 0.5.135
4
+
5
+ ### Patch Changes
6
+
7
+ - feat: restore initial load transition for desktop
8
+
3
9
  ## 0.5.134
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stoker-platform/web-app",
3
- "version": "0.5.134",
3
+ "version": "0.5.135",
4
4
  "type": "module",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "scripts": {
package/src/main.tsx CHANGED
@@ -106,7 +106,11 @@ function Main() {
106
106
  const getRoutes = () => {
107
107
  const routes = loadRoutes()
108
108
  setRoutes(routes)
109
- setMode("app")
109
+ if (window.innerWidth >= 1024) {
110
+ runViewTransition(() => setMode("app"))
111
+ } else {
112
+ setMode("app")
113
+ }
110
114
  }
111
115
 
112
116
  const initialize = async () => {