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

refactor: images-loading #80

Merged
merged 4 commits into from
Feb 11, 2025
Merged

refactor: images-loading #80

merged 4 commits into from
Feb 11, 2025

Conversation

Harman-singh-waraich
Copy link
Contributor

@Harman-singh-waraich Harman-singh-waraich commented Feb 10, 2025

WIP

Summary by CodeRabbit

  • New Features

    • Enhanced preloading of hero background images across key page layouts to improve visual performance.
  • Refactor

    • Updated hero components to standardize image loading behavior by switching the image handling approach.
  • Chores

    • Improved image configuration settings with optimized caching and device size options for consistent asset delivery.

Copy link
Contributor

coderabbitai bot commented Feb 10, 2025

Walkthrough

This pull request updates the application’s hero image handling and configuration. The main layout now preloads hero images using a new GraphQL query and utility function. Several Hero components have been modified to use the unoptimized image attribute instead of priority. Additionally, Next.js configuration has been enhanced with new caching and device size settings for improved image handling.

Changes

Files Change Summary
frontend/src/app/layout.tsx Added import and request for herosImagesQuery; integrated getHeroImgsProps to dynamically generate <link> elements in the <head> for preloading hero images.
frontend/next.config.mjs Updated Next.js configuration by adding minimumCacheTTL and deviceSizes properties; fixed syntax in remotePatterns.
frontend/src/components/{BrandAssets,Community,ForBuilders}/Hero.tsx,
frontend/src/app/for-lawyers/components/Hero.tsx,
frontend/src/components/{Cooperative,Earn,PNKToken,ResearchDevelopment}/Hero.tsx
Modified the Image component in Hero components by replacing the priority attribute with unoptimized to change image loading behavior.
frontend/src/queries/heroImages.ts Introduced a new herosImagesQuery GraphQL query along with new type definitions (Hero and HeroImagesQueryType) to fetch hero image data for multiple pages.
frontend/src/utils/getHeroImgsProps.ts Added a new function getHeroImgsProps to process hero image data and generate image property objects for use in hero components.

Sequence Diagram(s)

sequenceDiagram
    participant RL as RootLayout
    participant Q as GraphQL Server
    participant U as getHeroImgsProps
    participant HD as Head Element

    RL->>Q: Request hero images (herosImagesQuery)
    Q-->>RL: Return hero images data
    RL->>U: Call getHeroImgsProps(data)
    U-->>RL: Return image properties array
    RL->>HD: Inject <link> elements for preloading
Loading

Possibly related PRs

Suggested reviewers

  • alcercu

Poem

Hop, hop, I code with glee,
Preloading images for all to see,
A query here, a function there,
Layout magic with care to spare,
In this code garden I proudly roam,
Carrot-fueled changes make my home!
🐰💻

✨ Finishing Touches
  • 📝 Generate Docstrings (Beta)

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Beta)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai or @coderabbitai title anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

netlify bot commented Feb 10, 2025

Deploy Preview for kleros-website-v2 ready!

Name Link
🔨 Latest commit 50916bc
🔍 Latest deploy log https://app.netlify.com/sites/kleros-website-v2/deploys/67ab37142d055400087e773f
😎 Deploy Preview https://deploy-preview-80--kleros-website-v2.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (4)
frontend/src/queries/heros.ts (2)

3-16: Consider using GraphQL fragments for repeated structures.

The query structure for both hero sections is identical. Using a fragment would make the query more maintainable.

 export const herosQuery = gql`
+  fragment HeroBackground on Hero {
+    background {
+      url
+    }
+  }
+
   {
     pnkTokenPageHero {
-      background {
-        url
-      }
+      ...HeroBackground
     }
     earnPageHero {
-      background {
-        url
-      }
+      ...HeroBackground
     }
   }
 `;

18-29: Consider using a shared interface for common types.

The background type is repeated. Using a shared interface would make the type definitions more maintainable.

+interface Background {
+  background: {
+    url: string;
+  };
+}
+
 export type HeroQueryType = {
-  pnkTokenPageHero: {
-    background: {
-      url: string;
-    };
-  };
-  earnPageHero: {
-    background: {
-      url: string;
-    };
-  };
+  pnkTokenPageHero: Background;
+  earnPageHero: Background;
 };
frontend/src/app/layout.tsx (2)

28-41: Optimize image preloading implementation.

A few suggestions to improve the image preloading implementation:

  1. Consider conditional rendering based on successful data fetch
  2. The imageSizes attribute might need adjustment for different viewports
  3. Consider adding fetchpriority="high" for critical hero images
       <head>
+        {herosImgs && (
           <link
             rel="preload"
             as="image"
             href={herosImgs.earnPageHero.background.url}
-            imageSizes="100vw"
+            imageSizes="(max-width: 768px) 100vw, 80vw"
+            fetchpriority="high"
           />
           <link
             rel="preload"
             as="image"
             href={herosImgs.pnkTokenPageHero.background.url}
-            imageSizes="100vw"
+            imageSizes="(max-width: 768px) 100vw, 80vw"
+            fetchpriority="high"
           />
+        )}
       </head>

26-49: Consider implementing error boundaries.

The component could benefit from error boundaries to handle rendering failures gracefully.

// Create an ErrorBoundary component
class ErrorBoundary extends React.Component {
  // Implementation details...
}

// Wrap the main content
<ErrorBoundary fallback={<div>Something went wrong</div>}>
  {/* Existing JSX */}
</ErrorBoundary>
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 14d328e and 6d3c590.

📒 Files selected for processing (2)
  • frontend/src/app/layout.tsx (2 hunks)
  • frontend/src/queries/heros.ts (1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (3)
  • GitHub Check: Redirect rules - kleros-website-v2
  • GitHub Check: Header rules - kleros-website-v2
  • GitHub Check: Pages changed - kleros-website-v2

frontend/src/app/layout.tsx Outdated Show resolved Hide resolved
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (4)
frontend/src/components/BrandAssets/Hero.tsx (1)

30-37: LGTM! Consider optimizing image loading further.

The addition of sizes="100vw" is appropriate for a full-viewport-width background image. The combination with fill, priority, and proper CSS classes ensures optimal rendering.

Consider adding a quality prop to optimize the image further:

 <Image
   src={heroData.background.url}
   alt="Hero Image Background"
   fill
   priority
   sizes="100vw"
+  quality={85}
   className="absolute left-0 top-0 z-[-1] h-full object-cover"
 />
frontend/src/components/Community/hero.tsx (1)

33-40: LGTM! Consider the same image optimization.

The addition of sizes="100vw" is appropriate and consistent with other hero components.

For consistency with other hero components, consider adding a quality prop:

 <Image
   src={background.url}
   alt="Hero Image Background"
   fill
   priority
   sizes="100vw"
+  quality={85}
   className="absolute left-0 top-0 z-[-1] h-full object-cover"
 />
frontend/src/components/ForBuilders/Hero.tsx (1)

45-52: LGTM! Consider the same image optimization.

The addition of sizes="100vw" is appropriate and consistent with other hero components.

For consistency with other hero components, consider adding a quality prop:

 <Image
   src={heroData.background.url}
   alt="Hero Image Background"
   fill
   priority
   sizes="100vw"
+  quality={85}
   className="absolute left-0 top-0 z-[-1] h-full object-cover"
 />
frontend/next.config.mjs (1)

7-12: Consider using environment variables for the hostname.

While the remote pattern is correctly configured for the Strapi media server, it would be more maintainable to use an environment variable for the hostname.

    remotePatterns: [
      {
        protocol: "https",
-        hostname: "delicate-eggs-595f0e58b8.media.strapiapp.com",
+        hostname: process.env.NEXT_PUBLIC_STRAPI_MEDIA_HOST,
      },
    ],

Add to your .env file:

NEXT_PUBLIC_STRAPI_MEDIA_HOST=delicate-eggs-595f0e58b8.media.strapiapp.com
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 6d3c590 and f3859a5.

📒 Files selected for processing (4)
  • frontend/next.config.mjs (1 hunks)
  • frontend/src/components/BrandAssets/Hero.tsx (1 hunks)
  • frontend/src/components/Community/hero.tsx (1 hunks)
  • frontend/src/components/ForBuilders/Hero.tsx (1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (3)
  • GitHub Check: Redirect rules - kleros-website-v2
  • GitHub Check: Header rules - kleros-website-v2
  • GitHub Check: Pages changed - kleros-website-v2
🔇 Additional comments (1)
frontend/next.config.mjs (1)

6-6: Well-chosen responsive breakpoints!

The device sizes array provides a good range of breakpoints from mobile (640px) to large desktop (1920px) displays, which will help optimize image loading across different devices.

frontend/next.config.mjs Outdated Show resolved Hide resolved
@Harman-singh-waraich Harman-singh-waraich marked this pull request as draft February 11, 2025 06:55
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🔭 Outside diff range comments (1)
frontend/src/app/for-lawyers/components/Hero.tsx (1)

13-15: ⚠️ Potential issue

Add error handling for the GraphQL request.

The hero data fetch could fail. Consider adding error handling to gracefully handle failures.

-  const { header, subtitle, buttons, arrowLink, background } = (
-    await request<HeroQueryType>(heroQuery)
-  ).forLawyersPageHero;
+  let heroData;
+  try {
+    heroData = await request<HeroQueryType>(heroQuery);
+  } catch (error) {
+    console.error('Failed to fetch hero data:', error);
+    // Consider implementing a fallback UI
+    return null;
+  }
+  const { header, subtitle, buttons, arrowLink, background } = heroData.forLawyersPageHero;
♻️ Duplicate comments (1)
frontend/src/app/layout.tsx (1)

26-26: ⚠️ Potential issue

Add error handling for the GraphQL request.

The GraphQL request could fail. Consider adding error handling to gracefully handle failures.

🧹 Nitpick comments (1)
frontend/src/app/layout.tsx (1)

27-32: Consider preloading all hero images.

While preloading the earn page hero is good, consider preloading other hero images from herosImgs as well, since they're already fetched.

 const props = getImageProps({
   src: herosImgs.earnPageHero.background.url,
   alt: "earn",
   fill: true,
   priority: true,
 });
+const pnkProps = getImageProps({
+  src: herosImgs.pnkTokenPageHero.background.url,
+  alt: "pnk",
+  fill: true,
+  priority: true,
+});

 return (
   <html lang="en">
     <head>
       <link
         rel="preload"
         as="image"
         imageSrcSet={props.props.srcSet}
         imageSizes="100vw"
       />
+      <link
+        rel="preload"
+        as="image"
+        imageSrcSet={pnkProps.props.srcSet}
+        imageSizes="100vw"
+      />
     </head>

Also applies to: 36-43

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between f3859a5 and 1c4a480.

📒 Files selected for processing (6)
  • frontend/next.config.mjs (1 hunks)
  • frontend/src/app/for-lawyers/components/Hero.tsx (1 hunks)
  • frontend/src/app/layout.tsx (2 hunks)
  • frontend/src/components/Cooperative/hero.tsx (1 hunks)
  • frontend/src/components/Earn/Hero.tsx (1 hunks)
  • frontend/src/components/PNKToken/Hero.tsx (1 hunks)
✅ Files skipped from review due to trivial changes (2)
  • frontend/src/components/PNKToken/Hero.tsx
  • frontend/src/components/Earn/Hero.tsx
⏰ Context from checks skipped due to timeout of 90000ms (3)
  • GitHub Check: Redirect rules - kleros-website-v2
  • GitHub Check: Header rules - kleros-website-v2
  • GitHub Check: Pages changed - kleros-website-v2
🔇 Additional comments (5)
frontend/next.config.mjs (2)

5-5: Verify the cache duration setting.

The minimumCacheTTL is set to 31536000 seconds (365 days). While this maximizes caching benefits, consider if such a long duration is appropriate for your use case, especially if images might need updates.


6-6: LGTM! Device sizes are well-configured.

The deviceSizes array includes common breakpoints (640px to 1920px) that align well with responsive design best practices.

frontend/src/app/for-lawyers/components/Hero.tsx (1)

44-44: LGTM! Responsive image sizing is well-configured.

The sizes="100vw" attribute is correctly set, ensuring the image spans the full viewport width and loads the appropriate size based on the device.

frontend/src/components/Cooperative/hero.tsx (2)

46-46: LGTM! Responsive image sizing is well-configured.

The sizes="100vw" attribute is correctly set, ensuring optimal image loading based on viewport width.


11-16: Great use of props pattern!

The component receives hero data as props instead of fetching it directly, making it more reusable and easier to test.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

♻️ Duplicate comments (1)
frontend/src/app/layout.tsx (1)

25-26: ⚠️ Potential issue

Add error handling for the GraphQL request.

The GraphQL request could fail. Consider adding error handling to gracefully handle failures.

🧹 Nitpick comments (6)
frontend/src/utils/getHeroImgsProps.ts (1)

5-17: Add JSDoc documentation for better code maintainability.

Consider adding JSDoc documentation to describe the function's purpose, parameters, and return type.

+/**
+ * Generates image properties for hero components using Next.js's getImageProps.
+ * @param data - Hero images data from GraphQL query
+ * @returns Array of image properties for preloading
+ */
 export const getHeroImgsProps = (data: HeroImagesQueryType) => {
frontend/src/queries/heroImages.ts (2)

3-54: Use GraphQL fragments to reduce code duplication.

The query repeats the same fields for each hero. Consider using a fragment to make the code more maintainable.

 export const herosImagesQuery = gql`
+  fragment HeroBackground on Hero {
+    background {
+      name
+      url
+    }
+  }
+
   {
     earnPageHero {
-      background {
-        name
-        url
-      }
+      ...HeroBackground
     }
     forBuildersPageHero {
-      background {
-        name
-        url
-      }
+      ...HeroBackground
     }
     # ... apply the same pattern to other heroes
   }
`;

55-57: Add JSDoc documentation for types.

Consider adding JSDoc documentation to describe the types and their purpose.

+/**
+ * Represents a hero component with background image.
+ */
 type Hero = {
   background: { name: string; url: string };
 };

+/**
+ * Type representing the response from the hero images GraphQL query.
+ */
 export type HeroImagesQueryType = {

Also applies to: 59-68

frontend/src/app/layout.tsx (1)

30-41: Optimize image sizes for different viewports.

The imageSizes attribute is hardcoded to "100vw". Consider using responsive sizes to optimize image loading for different viewports.

-            imageSizes="100vw"
+            imageSizes="(max-width: 768px) 100vw, (max-width: 1200px) 80vw, 1400px"
frontend/src/components/ResearchDevelopment/Hero.tsx (2)

47-53: Improve image accessibility with descriptive alt text.

The current alt text "Hero Image Background" is generic. Consider using a more descriptive alt text that reflects the content or purpose of the image.

-        alt="Hero Image Background"
+        alt={`Research & Development Hero - ${background.name}`}

47-53: Use CSS isolation for z-index stacking context.

Using negative z-index values can lead to stacking context issues. Consider creating a new stacking context using CSS isolation.

-        className="absolute left-0 top-0 z-[-1] h-full object-cover"
+        className="absolute left-0 top-0 isolate -z-10 h-full object-cover"
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 1c4a480 and 50916bc.

📒 Files selected for processing (11)
  • frontend/src/app/for-lawyers/components/Hero.tsx (1 hunks)
  • frontend/src/app/layout.tsx (2 hunks)
  • frontend/src/components/BrandAssets/Hero.tsx (1 hunks)
  • frontend/src/components/Community/hero.tsx (1 hunks)
  • frontend/src/components/Cooperative/hero.tsx (1 hunks)
  • frontend/src/components/Earn/Hero.tsx (1 hunks)
  • frontend/src/components/ForBuilders/Hero.tsx (1 hunks)
  • frontend/src/components/PNKToken/Hero.tsx (1 hunks)
  • frontend/src/components/ResearchDevelopment/Hero.tsx (1 hunks)
  • frontend/src/queries/heroImages.ts (1 hunks)
  • frontend/src/utils/getHeroImgsProps.ts (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (7)
  • frontend/src/components/BrandAssets/Hero.tsx
  • frontend/src/components/PNKToken/Hero.tsx
  • frontend/src/components/Cooperative/hero.tsx
  • frontend/src/components/Community/hero.tsx
  • frontend/src/components/Earn/Hero.tsx
  • frontend/src/app/for-lawyers/components/Hero.tsx
  • frontend/src/components/ForBuilders/Hero.tsx
⏰ Context from checks skipped due to timeout of 90000ms (3)
  • GitHub Check: Redirect rules - kleros-website-v2
  • GitHub Check: Header rules - kleros-website-v2
  • GitHub Check: Pages changed - kleros-website-v2
🔇 Additional comments (1)
frontend/src/utils/getHeroImgsProps.ts (1)

5-17: Verify the impact of disabling image optimization.

Setting unoptimized: true disables Next.js's built-in Image Optimization API. This could affect image loading performance and optimization. Please ensure this aligns with your performance requirements.

✅ Verification successful

🌐 Web query:

What are the implications of using unoptimized images in Next.js?

💡 Result:

Using unoptimized images in Next.js introduces several performance and user experience drawbacks that impact both developers and end-users:

Core Implications

1. Increased Page Load Times
Unoptimized images retain their original file sizes, leading to:

  • 4-10x larger payloads compared to WebP/AVIF formats [7]
  • Slower Largest Contentful Paint (LCP) metrics [1][5]
  • No automatic viewport-based lazy loading [5][6]

2. Layout Instability
Without explicit dimensions:

  • Cumulative Layout Shift (CLS) increases as images load [1][5]
  • Browser struggles to reserve space before image rendering [2][9]

3. Bandwidth Waste
Serving full-resolution assets to all devices:

  • Mobile users download desktop-sized images [7][9]
  • No responsive srcset generation ([6] shows default srcset behavior vs unoptimized)

4. SEO Penalties
Search engines penalize for:

  • Poor Core Web Vitals scores (LCP/CLS) [1][7]
  • Missing modern format optimizations [5][10]
  • Excessive page weight [9]

Technical Comparison

Optimized (Next.js Image) Unoptimized (<img>)
Automatic WebP/AVIF conversion Original formats only
Device-specific resizing Single size for all devices
Lazy loading by default Eager loading unless manual
CLS prevention via aspect ratio Layout shifts common
~30KB avg size (4K image) ~4MB avg size (4K image) [7]

Implementation Consequences

When using unoptimized={true} ([4][6]):

// Disables all Next.js optimizations
<Image
  src="/large.jpg"
  width={1200}
  height={800}
  unoptimized
/>

This configuration:

  1. Bypasses Sharp optimization pipeline [3]
  2. Disables automatic quality reduction [6]
  3. Removes format negotiation logic [6]
  4. Increases server load from raw asset delivery [9]

Developers must manually implement equivalent optimizations through third-party tools or CDNs when opting out of Next.js' built-in image handling[8][10]. The framework's automatic on-demand optimization ([5] shows 75% size reduction typically) becomes unavailable, requiring significant additional work to match native performance characteristics.

Citations:


Assessment of Disabling Next.js Image Optimization

The use of unoptimized: true bypasses Next.js’s built-in image handling. As confirmed by recent findings:

  • Increased File Sizes & Load Times: Images retain their original sizes, leading to slower Largest Contentful Paint (LCP) and higher bandwidth usage.
  • Layout Instability & CLS: Without automated resizing and lazy loading, layout shifts can increase, adversely impacting Core Web Vitals.
  • SEO Implications: Poor performance and larger page weights may negatively affect SEO.
  • Manual Optimization Requirement: You’ll need to implement alternative optimizations (e.g., external CDNs or manual processing) to mitigate these issues if performance is a priority.

Please verify that these trade-offs align with your performance requirements before proceeding.

@alcercu alcercu marked this pull request as ready for review February 11, 2025 14:34
Copy link
Collaborator

@alcercu alcercu left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm

@alcercu alcercu merged commit f0d09ba into master Feb 11, 2025
5 checks passed
@alcercu alcercu deleted the refactor/images-caching branch February 11, 2025 14:35
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.

2 participants