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

feat: New onboarding #1510

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft

feat: New onboarding #1510

wants to merge 1 commit into from

Conversation

thierryskoda
Copy link
Collaborator

@thierryskoda thierryskoda commented Jan 13, 2025

Summary by CodeRabbit

Release Notes

  • New Features

    • Added new onboarding screens with animated transitions
    • Introduced OnboardingGetStartedScreen with engaging user experience
  • Design System Updates

    • Enhanced text styling with new size options
    • Added 3xl text size for improved typography
  • Navigation

    • Reorganized onboarding screen navigation
    • Removed header for onboarding screens

Copy link
Contributor

coderabbitai bot commented Jan 13, 2025

Walkthrough

This pull request introduces several changes across the design system and onboarding features. The modifications include updating text size styles in the design system, adding new onboarding-related components like OnboardingSubtitle, OnboardingTitle, and OnboardingGetStartedScreen, and adjusting the navigation structure to accommodate these new screens. The changes focus on enhancing the visual design and user experience of the onboarding process.

Changes

File Change Summary
design-system/Text/Text.styles.ts - Added new "3xl" size key with fontSize: 48 and lineHeight: 60
- Updated xxl size to fontSize: 40 and lineHeight: 44
features/conversation/conversation-message/...simple-text.tsx - Changed emoji text size from textSizeStyles.xxl to textSizeStyles["3xl"]
features/onboarding/components/onboarding-subtitle.tsx - Added new memoized OnboardingSubtitle component
features/onboarding/components/onboarding-title.tsx - Added new memoized OnboardingTitle component
features/onboarding/onboarding-get-started.screen.tsx - Added new OnboardingGetStartedScreen component with animated layout
screens/Navigation/Navigation.tsx - Updated navigation structure for OnboardingGetStarted screen
- Moved screen to new NativeStack.Group with headerShown: false

Possibly related PRs

Suggested Reviewers

  • lourou
  • alexrisch

Poem

🐰 A rabbit's design system tale,
Text sizes growing without fail,
Onboarding screens so bright and clean,
Animations dance, a digital scene,
Pixels hop with stylish flair! 🎨

Finishing Touches

  • 📝 Generate Docstrings (Beta)

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 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 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.

Comment on lines +1 to +15
import { AnimatedText, IAnimatedTextProps } from "@/design-system/Text";
import { memo } from "react";

export const OnboardingSubtitle = memo(function OnboardingSubtitle(
props: IAnimatedTextProps
) {
const { style, ...rest } = props;
return (
<AnimatedText
size="sm"
style={[{ textAlign: "center" }, style]}
{...rest}
/>
);
});
Copy link

Choose a reason for hiding this comment

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

The filename onboarding-subtitlte.tsx contains a typo. Please rename it to onboarding-subtitle.tsx and update all corresponding imports. This will maintain consistency and prevent potential issues with file references.

Spotted by Graphite Reviewer

Is this helpful? React 👍 or 👎 to let us know.


return (
<Screen
key={getRandomId()}
Copy link

Choose a reason for hiding this comment

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

Using getRandomId() as a key prop will force a re-render on every render cycle since it generates a new value each time. This can hurt performance, especially for complex component trees. Either remove the key prop if it's not needed for list reconciliation, or use a stable identifier that persists across renders.

Spotted by Graphite Reviewer

Is this helpful? React 👍 or 👎 to let us know.

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: 4

🧹 Nitpick comments (1)
design-system/Text/Text.styles.ts (1)

7-7: Use consistent object property syntax for size keys.

The array syntax ["3xl"] differs from the object property syntax used for other sizes. Consider using consistent object property notation:

-  ["3xl"]: { fontSize: 48, lineHeight: 60 } satisfies TextStyle,
+  "3xl": { fontSize: 48, lineHeight: 60 } satisfies TextStyle,
📜 Review details

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

📥 Commits

Reviewing files that changed from the base of the PR and between 2bbdb97 and b252a51.

📒 Files selected for processing (6)
  • design-system/Text/Text.styles.ts (1 hunks)
  • features/conversation/conversation-message/conversation-message-content-types/conversation-message-simple-text.tsx (1 hunks)
  • features/onboarding/components/onboarding-subtitlte.tsx (1 hunks)
  • features/onboarding/components/onboarding-title.tsx (1 hunks)
  • features/onboarding/onboarding-get-started.screen.tsx (1 hunks)
  • screens/Navigation/Navigation.tsx (2 hunks)
🧰 Additional context used
🪛 GitHub Check: tsc
features/onboarding/onboarding-get-started.screen.tsx

[failure] 120-120:
Object literal may only specify known properties, and 'color' does not exist in type 'ViewStyle | RecursiveArray<Falsy | ViewStyle | RegisteredStyle>'.

⏰ Context from checks skipped due to timeout of 90000ms (3)
  • GitHub Check: lint
  • GitHub Check: performance-test
  • GitHub Check: test
🔇 Additional comments (6)
features/onboarding/components/onboarding-subtitlte.tsx (1)

4-15: LGTM! Well-structured component with performance optimization.

The component is well-implemented with proper memoization and props handling. The centered text alignment is appropriate for onboarding UI.

features/onboarding/components/onboarding-title.tsx (1)

4-16: LGTM! Consistent implementation with OnboardingSubtitle.

The component follows the same pattern as OnboardingSubtitle with appropriate styling for a title component.

screens/Navigation/Navigation.tsx (1)

198-203: LGTM! Proper navigation setup for the onboarding screen.

The OnboardingGetStartedScreen is correctly integrated into the SignedOutNavigation stack with appropriate header configuration.

design-system/Text/Text.styles.ts (2)

10-11: Verify design specifications with Andrew.

The comments indicate that some text sizes need confirmation. Since this PR introduces new onboarding UI, it's important to ensure all text sizes are finalized.


7-8: Review line height ratios for visual consistency.

The line height to font size ratios are inconsistent between the new sizes:

  • "3xl": 60/48 = 1.25
  • "xxl": 44/40 = 1.1

Consider maintaining a consistent ratio for better visual rhythm across text sizes.

Run this script to analyze line height ratios across all text sizes:

features/conversation/conversation-message/conversation-message-content-types/conversation-message-simple-text.tsx (1)

36-36: Verify the intentional size increase for emoji rendering.

The change from xxl (40px) to 3xl (48px) represents a 20% size increase for emoji rendering. While this might improve visibility, it could affect layout and spacing.

Please confirm if this size increase was intentional for the onboarding feature or if it's an unrelated enhancement.

Run this script to find other potential emoji size references:

Comment on lines +1 to +15
import { AnimatedText, IAnimatedTextProps } from "@/design-system/Text";
import { memo } from "react";

export const OnboardingSubtitle = memo(function OnboardingSubtitle(
props: IAnimatedTextProps
) {
const { style, ...rest } = props;
return (
<AnimatedText
size="sm"
style={[{ textAlign: "center" }, style]}
{...rest}
/>
);
});
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue

Fix typo in filename: "subtitlte" → "subtitle"

The filename contains a typo which should be corrected to maintain consistency and prevent confusion. This will require updating import statements in other files as well.

Run this script to verify all imports that need to be updated:

#!/bin/bash
# Find all files importing the misspelled component
rg -l "onboarding-subtitlte"

Comment on lines +118 to +124
<Icon
style={{
color: "#A1F293",
}}
icon="checkmark"
size={40}
/>
Copy link
Contributor

Choose a reason for hiding this comment

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

🛠️ Refactor suggestion

Use theme color instead of hard-coded value

Replace the hard-coded color "#A1F293" with a theme color to maintain consistency and support different themes.

               <Icon
                 style={{
-                  color: "#A1F293",
+                  tintColor: theme.colors.success.primary, // or appropriate theme color
                 }}
                 icon="checkmark"
                 size={40}
               />
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
<Icon
style={{
color: "#A1F293",
}}
icon="checkmark"
size={40}
/>
<Icon
style={{
tintColor: theme.colors.success.primary,
}}
icon="checkmark"
size={40}
/>
🧰 Tools
🪛 GitHub Check: tsc

[failure] 120-120:
Object literal may only specify known properties, and 'color' does not exist in type 'ViewStyle | RecursiveArray<Falsy | ViewStyle | RegisteredStyle>'.


return (
<Screen
key={getRandomId()}
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue

Remove getRandomId() from Screen key prop

Using a random key can cause unnecessary remounts of the entire screen component and its children. Remove this key prop as it's not needed here.

-      <Screen
-        key={getRandomId()}
+      <Screen

Committable suggestion skipped: line range outside the PR's diff.

Comment on lines +97 to +129
<Pressable>
<AnimatedVStack
entering={FadeIn.springify().delay(600).duration(3000)}
style={{
paddingBottom: insets.bottom + theme.spacing.sm,
justifyContent: "center",
alignItems: "center",
rowGap: theme.spacing.xxs,
}}
>
<PressableScale>
<AnimatedCenter
style={{
borderRadius: 999,
width: theme.avatarSize.lg,
height: theme.avatarSize.lg,
backgroundColor: theme.colors.fill.primary,
justifyContent: "center",
alignItems: "center",
}}
>
<Icon
style={{
color: "#A1F293",
}}
icon="checkmark"
size={40}
/>
</AnimatedCenter>
</PressableScale>
<AnimatedText size="xs">Create a Contact Card</AnimatedText>
</AnimatedVStack>
</Pressable>
Copy link
Contributor

Choose a reason for hiding this comment

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

🛠️ Refactor suggestion

Simplify nested Pressable components

The component has nested Pressable and PressableScale which might lead to conflicting touch handling. Consider combining them into a single PressableScale.

-        <Pressable>
-          <AnimatedVStack
+        <PressableScale>
+          <AnimatedVStack
             entering={FadeIn.springify().delay(600).duration(3000)}
             style={{
               paddingBottom: insets.bottom + theme.spacing.sm,
               justifyContent: "center",
               alignItems: "center",
               rowGap: theme.spacing.xxs,
             }}
           >
-            <PressableScale>
             <AnimatedCenter
               style={{
                 borderRadius: 999,
                 width: theme.avatarSize.lg,
                 height: theme.avatarSize.lg,
                 backgroundColor: theme.colors.fill.primary,
                 justifyContent: "center",
                 alignItems: "center",
               }}
             >
               <Icon
                 style={{
                   color: "#A1F293",
                 }}
                 icon="checkmark"
                 size={40}
               />
             </AnimatedCenter>
-            </PressableScale>
             <AnimatedText size="xs">Create a Contact Card</AnimatedText>
           </AnimatedVStack>
-        </Pressable>
+        </PressableScale>
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
<Pressable>
<AnimatedVStack
entering={FadeIn.springify().delay(600).duration(3000)}
style={{
paddingBottom: insets.bottom + theme.spacing.sm,
justifyContent: "center",
alignItems: "center",
rowGap: theme.spacing.xxs,
}}
>
<PressableScale>
<AnimatedCenter
style={{
borderRadius: 999,
width: theme.avatarSize.lg,
height: theme.avatarSize.lg,
backgroundColor: theme.colors.fill.primary,
justifyContent: "center",
alignItems: "center",
}}
>
<Icon
style={{
color: "#A1F293",
}}
icon="checkmark"
size={40}
/>
</AnimatedCenter>
</PressableScale>
<AnimatedText size="xs">Create a Contact Card</AnimatedText>
</AnimatedVStack>
</Pressable>
<PressableScale>
<AnimatedVStack
entering={FadeIn.springify().delay(600).duration(3000)}
style={{
paddingBottom: insets.bottom + theme.spacing.sm,
justifyContent: "center",
alignItems: "center",
rowGap: theme.spacing.xxs,
}}
>
<AnimatedCenter
style={{
borderRadius: 999,
width: theme.avatarSize.lg,
height: theme.avatarSize.lg,
backgroundColor: theme.colors.fill.primary,
justifyContent: "center",
alignItems: "center",
}}
>
<Icon
style={{
color: "#A1F293",
}}
icon="checkmark"
size={40}
/>
</AnimatedCenter>
<AnimatedText size="xs">Create a Contact Card</AnimatedText>
</AnimatedVStack>
</PressableScale>
🧰 Tools
🪛 GitHub Check: tsc

[failure] 120-120:
Object literal may only specify known properties, and 'color' does not exist in type 'ViewStyle | RecursiveArray<Falsy | ViewStyle | RegisteredStyle>'.

Copy link
Contributor

Performance Comparison Report

  • Current: baa45c7 - 2025-01-13 14:01:33Z
  • Baseline: main (2bbdb97) - 2025-01-13 14:00:24Z

Significant Changes To Duration

There are no entries

Meaningless Changes To Duration

Show entries
Name Type Duration Count
Avatar Image 10 runs render 1.1 ms → 1.0 ms (-0.1 ms, -9.1%) 1 → 1
Avatar Image 50 runs render 0.7 ms → 0.7 ms (+0.0 ms, +2.8%) 1 → 1
Empty Avatar 10 runs render 1.1 ms → 1.3 ms (+0.2 ms, +18.2%) 🔴 1 → 1
Empty Avatar 50 runs render 1.2 ms → 1.2 ms 1 → 1
Text Component with color prop - 10 runs render 0.7 ms → 0.7 ms 1 → 1
Text Component with default props - 10 runs render 1.2 ms → 0.8 ms (-0.4 ms, -33.3%) 🟢 1 → 1
Text Component with translation key - 10 runs render 0.7 ms → 0.6 ms (-0.1 ms, -14.3%) 1 → 1
Text Component with weight and size - 10 runs render 0.8 ms → 0.7 ms (-0.1 ms, -12.5%) 1 → 1
Show details
Name Type Duration Count
Avatar Image 10 runs render Baseline
Mean: 1.1 ms
Stdev: 0.3 ms (28.7%)
Runs: 1 1 1 1 1 1 1 1 2 1
Warmup runs: 1

Current
Mean: 1.0 ms
Stdev: 0.0 ms (0.0%)
Runs: 1 1 1 1 1 1 1 1 1 1
Warmup runs: 1
Baseline
Mean: 1
Stdev: 0 (0.0%)
Runs: 1 1 1 1 1 1 1 1 1 1
Render issues:

Current
Mean: 1
Stdev: 0 (0.0%)
Runs: 1 1 1 1 1 1 1 1 1 1
Render issues:
Avatar Image 50 runs render Baseline
Mean: 0.7 ms
Stdev: 0.5 ms (63.0%)
Runs: 1 1 1 1 0 1 1 1 1 1 1 1 0 0 1 1 1 0 1 0 0 1 1 1 0 0 1 1 1 0 0 1 0 1 1 1 0 0 1 1 1 1 1 0 1 1 1 1 1 1
Warmup runs: 0

Current
Mean: 0.7 ms
Stdev: 0.5 ms (65.8%)
Runs: 0 1 1 1 1 0 1 0 0 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 0 0 0 1 1 1 1 0 1 0 1 2 1 1 0 0 1 0 1 0 1 1 1 1 1
Warmup runs: 1
Baseline
Mean: 1
Stdev: 0 (0.0%)
Runs: 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Render issues:

Current
Mean: 1
Stdev: 0 (0.0%)
Runs: 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Render issues:
Empty Avatar 10 runs render Baseline
Mean: 1.1 ms
Stdev: 0.3 ms (28.7%)
Runs: 1 1 1 1 1 2 1 1 1 1
Warmup runs: 3

Current
Mean: 1.3 ms
Stdev: 0.7 ms (51.9%)
Runs: 1 1 1 2 2 1 2 1 2 0
Warmup runs: 3
Baseline
Mean: 1
Stdev: 0 (0.0%)
Runs: 1 1 1 1 1 1 1 1 1 1
Render issues:

Current
Mean: 1
Stdev: 0 (0.0%)
Runs: 1 1 1 1 1 1 1 1 1 1
Render issues:
Empty Avatar 50 runs render Baseline
Mean: 1.2 ms
Stdev: 0.4 ms (31.9%)
Runs: 1 1 1 2 1 1 1 1 1 2 1 1 2 1 1 1 1 1 1 2 1 1 2 1 1 2 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1
Warmup runs: 2

Current
Mean: 1.2 ms
Stdev: 0.5 ms (43.9%)
Runs: 2 2 1 1 2 1 1 1 2 1 1 1 1 1 1 2 1 1 1 1 1 2 1 1 1 2 1 1 2 1 1 0 1 2 1 1 1 0 2 1 2 1 1 1 1 1 0 1 1 1
Warmup runs: 1
Baseline
Mean: 1
Stdev: 0 (0.0%)
Runs: 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Render issues:

Current
Mean: 1
Stdev: 0 (0.0%)
Runs: 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Render issues:
Text Component with color prop - 10 runs render Baseline
Mean: 0.7 ms
Stdev: 0.5 ms (69.0%)
Runs: 1 0 1 0 1 1 1 1 0 1
Warmup runs: 1

Current
Mean: 0.7 ms
Stdev: 0.5 ms (69.0%)
Runs: 0 1 0 0 1 1 1 1 1 1
Warmup runs: 1
Baseline
Mean: 1
Stdev: 0 (0.0%)
Runs: 1 1 1 1 1 1 1 1 1 1
Render issues:

Current
Mean: 1
Stdev: 0 (0.0%)
Runs: 1 1 1 1 1 1 1 1 1 1
Render issues:
Text Component with default props - 10 runs render Baseline
Mean: 1.2 ms
Stdev: 0.4 ms (35.1%)
Runs: 2 1 1 1 1 1 2 1 1 1
Warmup runs: 4

Current
Mean: 0.8 ms
Stdev: 0.6 ms (79.1%)
Runs: 1 1 1 2 1 0 1 0 0 1
Warmup runs: 4
Baseline
Mean: 1
Stdev: 0 (0.0%)
Runs: 1 1 1 1 1 1 1 1 1 1
Render issues:

Current
Mean: 1
Stdev: 0 (0.0%)
Runs: 1 1 1 1 1 1 1 1 1 1
Render issues:
Text Component with translation key - 10 runs render Baseline
Mean: 0.7 ms
Stdev: 0.5 ms (69.0%)
Runs: 0 1 1 0 1 1 1 1 0 1
Warmup runs: 1

Current
Mean: 0.6 ms
Stdev: 0.5 ms (86.1%)
Runs: 0 1 1 1 0 0 0 1 1 1
Warmup runs: 1
Baseline
Mean: 1
Stdev: 0 (0.0%)
Runs: 1 1 1 1 1 1 1 1 1 1
Render issues:

Current
Mean: 1
Stdev: 0 (0.0%)
Runs: 1 1 1 1 1 1 1 1 1 1
Render issues:
Text Component with weight and size - 10 runs render Baseline
Mean: 0.8 ms
Stdev: 0.4 ms (52.7%)
Runs: 1 1 1 1 1 1 1 0 1 0
Warmup runs: 0

Current
Mean: 0.7 ms
Stdev: 0.5 ms (69.0%)
Runs: 1 1 1 1 0 0 1 1 1 0
Warmup runs: 1
Baseline
Mean: 1
Stdev: 0 (0.0%)
Runs: 1 1 1 1 1 1 1 1 1 1
Render issues:

Current
Mean: 1
Stdev: 0 (0.0%)
Runs: 1 1 1 1 1 1 1 1 1 1
Render issues:

Render Count Changes

There are no entries

Render Issues

There are no entries

Added Scenarios

There are no entries

Removed Scenarios

There are no entries

Generated by 🚫 dangerJS against b252a51

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.

1 participant