-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
fix: infinite reloading #2405
fix: infinite reloading #2405
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## master #2405 +/- ##
==========================================
+ Coverage 72.43% 72.45% +0.01%
==========================================
Files 332 311 -21
Lines 7299 6886 -413
Branches 1161 1122 -39
==========================================
- Hits 5287 4989 -298
+ Misses 1806 1699 -107
+ Partials 206 198 -8
Flags with carried forward coverage won't be shown. Click here to find out more.
☔ View full report in Codecov by Sentry. |
Deploying with
|
Latest commit: |
d8a40ae
|
Status: | ✅ Deploy successful! |
Preview URL: | https://8623a6bf.affine.pages.dev |
Branch Preview URL: | https://himself65-0516-reload.affine.pages.dev |
affine-toeverythingBundle maindiff ------------------- Bundle Size Diff -------------------------
@@ EntryPoint: main @@
## master …5/0516-reload +/- ##
===================================================================
< Bundle 3.11 MB 3.25 MB +142 kB(+4.57%)
< Initial JS 1.86 MB 2.06 MB +203 kB(+10.93%)
< Initial CSS 16.8 kB 30.9 kB +14.1 kB(+84.29%)
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
< Assets 41 47 +6
< Chunks 39 40 +1
< Packages 132 139 +7
= Duplicates 3 3
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Warnings ~~~~~~~~~~~~~~~~~~~~~~~~~~~#
! Separate mixed content assets files
! Avoid cache wasting
@@ EntryPoint: pages/_app @@
## master …5/0516-reload +/- ##
===================================================================
< Bundle 3 MB 3.13 MB +133 kB(+4.43%)
< Initial JS 1.75 MB 1.94 MB +194 kB(+11.10%)
< Initial CSS 16.8 kB 30.9 kB +14.1 kB(+84.29%)
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
< Assets 39 45 +6
< Chunks 37 38 +1
< Packages 132 139 +7
= Duplicates 3 3
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Warnings ~~~~~~~~~~~~~~~~~~~~~~~~~~~#
! Separate mixed content assets files
! Avoid cache wasting
@@ EntryPoint: pages/_error @@
## master …5/0516-reload +/- ##
===================================================================
= Bundle 16.6 kB 16.6 kB
= Initial JS 16.6 kB 16.6 kB
= Initial CSS 0 B 0 B
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
= Assets 2 2
= Chunks 2 2
= Packages 5 5
= Duplicates 0 0
...and more |
@@ -28,11 +28,7 @@ export const rootWorkspacesMetadataAtom = atomWithStorage< | |||
); | |||
|
|||
// two more atoms to store the current workspace and page | |||
export const rootCurrentWorkspaceIdAtom = atomWithStorage<string | null>( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
storage is unnecessary
Fixes: #2381