Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

clients/web: fix repositories picker not showing all repos available #3775

Merged
merged 1 commit into from
Aug 19, 2024

Conversation

frankie567
Copy link
Member

Fix #3769

@frankie567 frankie567 enabled auto-merge (rebase) August 19, 2024 06:38
Copy link

vercel bot commented Aug 19, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
polar 🔄 Building (Inspect) Visit Preview 💬 Add feedback Aug 19, 2024 6:38am
1 Skipped Deployment
Name Status Preview Comments Updated (UTC)
polar-next-js-example ⬜️ Ignored (Inspect) Aug 19, 2024 6:38am

Copy link
Contributor

📦 Next.js Bundle Analysis for web

This analysis was generated by the Next.js Bundle Analysis action. 🤖

🎉 Global Bundle Size Decreased

Page Size (compressed)
global 226.56 KB (-1 B)
Details

The global bundle is the javascript bundle that loads alongside every page. It is in its own category because its impact is much higher - an increase to its size means that every page on your website loads slower, and a decrease means every page loads faster.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

If you want further insight into what is behind the changes, give @next/bundle-analyzer a try!

Thirty-three Pages Changed Size

The following pages changed size from the code in this PR compared to its base branch:

Page Size (compressed) First Load % of Budget (350 KB)
/backoffice/layout 455.45 KB 682 KB 194.86% (+/- <0.01%)
/docs/api/[...endpoint]/page 408.76 KB 635.31 KB 181.52% (+/- <0.01%)
/dashboard/[organization]/(topbar)/(home)/page 454.34 KB 680.9 KB 194.54% (🟡 +0.01%)
/dashboard/[organization]/(topbar)/layout 455.45 KB 682 KB 194.86% (+/- <0.01%)
/dashboard/[organization]/(topbar)/analytics/page 573.39 KB 799.95 KB 228.56% (+/- <0.01%)
/dashboard/[organization]/(topbar)/donations/overview/page 573.6 KB 800.16 KB 228.62% (+/- <0.01%)
/dashboard/[organization]/(topbar)/issues/badge/page 468.73 KB 695.29 KB 198.65% (🟡 +0.01%)
/dashboard/[organization]/(topbar)/issues/overview/page 490.22 KB 716.77 KB 204.79% (🟡 +0.01%)
/dashboard/[organization]/(topbar)/issues/organizations/page 448.24 KB 674.79 KB 192.80% (+/- <0.01%)
/dashboard/[organization]/(topbar)/members/page 445.56 KB 672.12 KB 192.04% (+/- <0.01%)
/dashboard/[organization]/(topbar)/posts/analytics/page 569.93 KB 796.49 KB 227.57% (+/- <0.01%)
/dashboard/[organization]/(topbar)/posts/page 557.21 KB 783.77 KB 223.93% (+/- <0.01%)
/dashboard/[organization]/(topbar)/products/benefits/page 539.49 KB 766.05 KB 218.87% (+/- <0.01%)
/dashboard/[organization]/(topbar)/products/page 446.53 KB 673.09 KB 192.31% (+/- <0.01%)
/dashboard/[organization]/(topbar)/sales/page 478.95 KB 705.51 KB 201.57% (🟡 +0.01%)
/dashboard/[organization]/(topbar)/sales/subscriptions/page 491.83 KB 718.39 KB 205.25% (🟡 +0.01%)
/dashboard/[organization]/(topbar)/settings/page 475.17 KB 701.73 KB 200.50% (+/- <0.01%)
/dashboard/[organization]/(topbar)/settings/webhooks/endpoints/[id]/page 491.7 KB 718.26 KB 205.22% (+/- <0.01%)
/dashboard/[organization]/(white)/posts/[post]/page 558.42 KB 784.98 KB 224.28% (+/- <0.01%)
/dashboard/[organization]/(white)/layout 427 KB 653.56 KB 186.73% (+/- <0.01%)
/dashboard/[organization]/(white)/posts/new/page 556.08 KB 782.64 KB 223.61% (+/- <0.01%)
/dashboard/[organization]/products/[id]/page 527.42 KB 753.98 KB 215.42% (+/- <0.01%)
/dashboard/[organization]/products/layout 427 KB 653.56 KB 186.73% (+/- <0.01%)
/dashboard/[organization]/products/new/page 527.1 KB 753.66 KB 215.33% (+/- <0.01%)
/dashboard/[organization]/promote/page 462.05 KB 688.61 KB 196.75% (+/- <0.01%)
/dashboard/[organization]/promote/layout 427 KB 653.56 KB 186.73% (+/- <0.01%)
/docs/(mdx)/layout 353.84 KB 580.4 KB 165.83% (+/- <0.01%)
/docs/(mdx)/finance/payouts/page 30.53 KB 257.09 KB 73.45% (🟡 +0.01%)
/docs/api/(mdx)/layout 353.83 KB 580.39 KB 165.83% (+/- <0.01%)
/docs/contribute/layout 353.84 KB 580.4 KB 165.83% (+/- <0.01%)
/docs/support/layout 353.84 KB 580.4 KB 165.83% (+/- <0.01%)
/dashboard/[organization]/(topbar)/finance/layout 427 KB 653.55 KB 186.73% (+/- <0.01%)
/dashboard/[organization]/(topbar)/finance/issue-funding/layout 427 KB 653.55 KB 186.73% (+/- <0.01%)
Details

Only the gzipped size is provided here based on an expert tip.

First Load is the size of the global bundle plus the bundle for the individual page. If a user were to show up to your website and land on a given page, the first load size represents the amount of javascript that user would need to download. If next/link is used, subsequent page loads would only need to download that page's bundle (the number in the "Size" column), since the global bundle has already been downloaded.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

The "Budget %" column shows what percentage of your performance budget the First Load total takes up. For example, if your budget was 100kb, and a given page's first load size was 10kb, it would be 10% of your budget. You can also see how much this has increased or decreased compared to the base branch of your PR. If this percentage has increased by 20% or more, there will be a red status indicator applied, indicating that special attention should be given to this. If you see "+/- <0.01%" it means that there was a change in bundle size, but it is a trivial enough amount that it can be ignored.

@frankie567 frankie567 merged commit b25051d into main Aug 19, 2024
12 of 15 checks passed
@frankie567 frankie567 deleted the fix/3769 branch August 19, 2024 06:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

issues/overview: missing repository in filter
1 participant