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(spaceward): Further intents enhancements #168

Merged
merged 20 commits into from
Apr 11, 2024

Conversation

laniakea42
Copy link
Contributor

@laniakea42 laniakea42 commented Apr 11, 2024

Summary by CodeRabbit

  • New Features

    • Introduced a new CreateIntent component for creating and managing intents with various conditions and approval settings.
    • Added a new function to select all addresses in the ChangePersonModal.
    • Added validation for address input in the AddPersonModal.
  • Enhancements

    • Improved conditional UI rendering in the Intent component.
    • Enhanced user interface for intent approval processes.
  • Bug Fixes

    • Adjusted the .gitignore settings to better manage local file exclusion from version control.
  • Refactor

    • Refactored the transaction monitoring function for improved readability and maintainability in keplr hook.
    • Removed redundant handleSubmit function in CreateIntentModal to streamline component behavior.

Copy link
Contributor

coderabbitai bot commented Apr 11, 2024

Walkthrough

Walkthrough

The updates encompass a range of enhancements across various components in a project related to address validation, user interaction, and UI changes. Key modifications include the addition of validation logic for address inputs, new functionalities for selecting and managing addresses, and aesthetic adjustments to the user interface. Additionally, there's a significant refactor in the transaction monitoring hook to improve code clarity and maintainability.

Changes

File Path Change Summary
.gitignore Updated to include/exclude *.local files.
.../add-person-modal.tsx Added address validation and updated UI styling based on validity.
.../change-person-modal.tsx Introduced a Select All functionality and updated key management.
.../create-intent-modal.tsx Removed handleSubmit function, altering control flow.
.../create-intent.tsx Added a new component for creating and managing intents.
.../intent.tsx Enhanced conditional UI rendering and refactored intent approval UI.
.../hooks/keplr.tsx Refactored monitorTx function for better readability and structure.
.../routes/intents.tsx Adjusted onIntentToggle function call condition.

Recent Review Details

Configuration used: .coderabbit.yaml

Commits Files that changed from the base of the PR and between d307192 and 0a3a7f9.
Files selected for processing (8)
  • .gitignore (1 hunks)
  • spaceward/src/components/add-person-modal.tsx (4 hunks)
  • spaceward/src/components/change-person-modal.tsx (2 hunks)
  • spaceward/src/components/create-intent-modal.tsx (1 hunks)
  • spaceward/src/components/create-intent.tsx (1 hunks)
  • spaceward/src/components/intent.tsx (3 hunks)
  • spaceward/src/hooks/keplr.tsx (1 hunks)
  • spaceward/src/routes/intents.tsx (1 hunks)
Additional comments not posted (19)
.gitignore (1)

22-22: The addition of *.local to .gitignore is appropriate for ensuring local files are not tracked by version control.

spaceward/src/hooks/keplr.tsx (3)

7-15: The setup and toast configuration in monitorTx function are well-implemented for notifying users about the transaction status.


17-69: The transaction processing logic in monitorTx is robust, handling different transaction outcomes and timeouts effectively.


70-90: The error handling in monitorTx is effectively tailored to provide specific feedback to the user based on the error encountered.

spaceward/src/components/add-person-modal.tsx (3)

4-4: The import of fromBech32 from @cosmjs/encoding is correctly used for address validation.


17-23: The use of useMemo for computing the isValid state is efficient and ensures that the validity is recalculated only when addPersonValue changes.


55-61: The conditional rendering based on the isValid state effectively updates the form styling and displays an error message when the address is invalid, enhancing user feedback.

Also applies to: 84-88

spaceward/src/components/change-person-modal.tsx (2)

24-26: The implementation of handleSelectAll correctly updates the selected state to mark all addresses as selected, facilitating bulk actions.


56-65: The Select All button is effectively integrated with the handleSelectAll function, enhancing the user interface by allowing easy selection of all addresses.

spaceward/src/components/create-intent-modal.tsx (1)

Line range hint 1-1: The removal of handleSubmit simplifies the control flow in CreateIntentModal, relying on direct handleClick calls for each condition type.

spaceward/src/routes/intents.tsx (1)

279-279: The modification to the onIntentToggle function call to check for intent.id before execution helps prevent errors related to incomplete intent data.

spaceward/src/components/intent.tsx (3)

185-216: The conditional rendering based on intent.id is appropriately used to display certain UI elements only for existing intents, enhancing the user interface's context sensitivity.


185-216: The refactoring of the UI logic for intent approval, including the toggle switch, is well-implemented, providing a clear and interactive way for users to manage intent activation.


185-216: The adjustments to styling and event handling in the intent approval toggle enhance the visual appeal and responsiveness of the component.

spaceward/src/components/create-intent.tsx (5)

56-61: Ensure handleInput is necessary as a useCallback here, as it might be over-optimization.


176-210: Ensure that the condition "joint" is properly defined and used elsewhere in the application, as it directly affects rendering.

Verification successful

The expanded search across all file types in the project has revealed multiple instances where the condition "joint" is used. It appears in various components and utility files, indicating that it is a well-defined and consistently used condition within the application. This includes its declaration as a type in intent.ts, its usage in condition checks in create-intent.tsx and intent.tsx, and its application in intents.tsx and shield.ts.

Given this information, it can be concluded that the condition "joint" is properly defined and used throughout the application, which aligns with the context provided in the code snippet from create-intent.tsx.

Scripts Executed

The following scripts were executed for the analysis:


Script:

#!/bin/bash
# Search for the usage of "joint" condition across the project to ensure consistency.
rg "joint" --type js

Length of output: 20



Script:

#!/bin/bash
# Expanding the search to include all file types to ensure "joint" is thoroughly checked across the project.
rg "joint"

Length of output: 1062


412-466: The modal for adding persons is well-implemented but ensure that the Portal component is tested for accessibility and performance.


468-535: Similar to the previous modal, verify the accessibility and performance of the modal for adding a person.

Verification successful

The search results from the executed script do not provide any specific information about issues or TODOs directly related to the Portal component in the context of adding a person. The results mostly include unrelated TODOs and FIXMEs from various parts of the codebase, none of which pertain to the Portal component or the functionality of adding a person.

Given the lack of relevant findings in the search results, there is no evidence to suggest that there are known accessibility or performance issues with the modal for adding a person as implemented in the Portal component. Therefore, the review comment cannot be directly verified based on the provided script output.

Scripts Executed

The following scripts were executed for the analysis:


Script:

#!/bin/bash
# Check for any reported issues or TODOs related to the Portal component in the context of adding a person.
rg "Portal" --type js --files-with-matches | xargs rg "add person|TODO|FIXME"

Length of output: 9002


537-559: The modal for approving intents should be checked for security, especially in how it interacts with wallet extensions.


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>.
    • 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 generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @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.

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 as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger a review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration 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.

@jjheywood jjheywood changed the title Dev 187 feat(spaceward): Further intents enhancements Apr 11, 2024
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: 2

Comment on lines +28 to +38
const CreateIntent = ({
intent,
onIntentRemove,
handleChangeIntent,
handleRemoveCondition,
}: {
intent: Intent;
onIntentRemove: (id: number) => void;
handleChangeIntent?: (id: number, newCondition: Condition) => void;
handleRemoveCondition: (id: number, conditionToRemove: Condition) => void;
}) => {
Copy link
Contributor

Choose a reason for hiding this comment

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

Consider destructuring intent and conditionToRemove directly in the function parameters for cleaner code.

- const CreateIntent = ({
- 	intent,
- 	onIntentRemove,
- 	handleChangeIntent,
- 	handleRemoveCondition,
- }: {
- 	intent: Intent;
- 	onIntentRemove: (id: number) => void;
- 	handleChangeIntent?: (id: number, newCondition: Condition) => void;
- 	handleRemoveCondition: (id: number, conditionToRemove: Condition) => void;
- }) => {
+ const CreateIntent = ({
+ 	intent: { id, conditions },
+ 	onIntentRemove,
+ 	handleChangeIntent,
+ 	handleRemoveCondition,
+ }: {
+ 	intent: Intent;
+ 	onIntentRemove: (id: number) => void;
+ 	handleChangeIntent?: (id: number, newCondition: Condition) => void;
+ 	handleRemoveCondition: (id: number, conditionToRemove: Condition) => void;
+ }) => {

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.

Suggested change
const CreateIntent = ({
intent,
onIntentRemove,
handleChangeIntent,
handleRemoveCondition,
}: {
intent: Intent;
onIntentRemove: (id: number) => void;
handleChangeIntent?: (id: number, newCondition: Condition) => void;
handleRemoveCondition: (id: number, conditionToRemove: Condition) => void;
}) => {
const CreateIntent = ({
intent: { id, conditions },
onIntentRemove,
handleChangeIntent,
handleRemoveCondition,
}: {
intent: Intent;
onIntentRemove: (id: number) => void;
handleChangeIntent?: (id: number, newCondition: Condition) => void;
handleRemoveCondition: (id: number, conditionToRemove: Condition) => void;
}) => {

Comment on lines +214 to +329

<div className="mt-4 mb-4">
<div className="text-xl bg-transparent flex justify-between items-center font-bold">
Approval by certain amount
<div className="flex items-center gap-2">
{warning && (
<img
src="/images/alert-triangle.svg"
alt=""
/>
)}
<div
onClick={() =>
handleRemoveCondition(
intent.id,
"group",
)
}
className="group relative cursor-pointer"
>
<img src="/images/x.svg" alt="" />
<div className="opacity-0 w-fit bg-[rgba(229,238,255,0.15)] text-white text-center text-xs rounded py-2 px-3 absolute z-10 group-hover:opacity-100 top-[-18px] left-1/2 pointer-events-none whitespace-nowrap backdrop-blur-[20px] translate-x-[-50%] translate-y-[-100%] before:content-[''] before:absolute before:left-[50%] before:bottom-0 before:border-[rgba(229,238,255,0.15)] before:border-b-[8px] before:border-l-[8px] before:border-t-[transparent] before:border-r-[transparent] before:border-t-[8px] before:border-r-[8px] before:w-0 before:h-0 before:rotate-[-45deg] before:translate-y-[50%] before:translate-x-[-50%]">
Remove Condition
</div>
</div>
</div>
</div>
<div className="text-[rgba(229,238,255,0.60)] mt-1">
Any{" "}
<span
onClick={() => {
setIsCountChange(!isCountChange);
}}
className="min-w-[17px] text-center inline-block bg-[rgba(229,238,255,0.15)] border-[1px] border-[rgba(229,238,255,0.30)] px-[2px] text-white rounded-sm cursor-pointer relative"
>
{approvalAmount}
{isCountChange && (
<div className="w-[56px] bg-[rgba(229,238,255,0.15)] absolute z-10 top-1/2 right-[calc(-100%_-_12px)] translate-x-[100%] backdrop-blur-[20px] translate-y-[-50%] before:content-[''] before:absolute before:left-[0] before:top-1/2 before:border-[rgba(229,238,255,0.3)] before:border-b-[8px] before:border-l-[8px] before:border-t-[transparent] before:border-r-[transparent] before:border-t-[8px] before:border-r-[8px] before:w-0 before:h-0 before:rotate-[45deg] before:translate-y-[-50%] before:translate-x-[-50%]">
<div className="flex flex-col gap-[2px] text-white text-center text-sm py-1 px-1 max-h-[120px] overflow-scroll no-scrollbar">
{[2, 3, 4, 5, 6, 7, 8, 9].map(
(item, key) => {
return (
<div
className={clsx(
`min-h-[24px] flex justify-center items-center text-[rgba(229,238,255,0.60)]`,
item ==
approvalAmount &&
`text-white bg-[rgba(229,238,255,0.15)]`,
)}
key={key}
onClick={() => {
setApprovalAmount(
item,
);
}}
>
{item}
</div>
);
},
)}
</div>
</div>
)}
</span>{" "}
persons should approve the transaction
</div>
<div className="mt-8 flex items-center gap-[8px] flex-wrap">
{INTENTS.map((intent, key) => {
return (
<AddressUnit intent={intent} key={key} />
);
})}
<button
onClick={() => {
setIsPersonsModal(true);
}}
className={clsx(
`text-sm flex w-fit items-center gap-[10px] h-12`,
warning
? `text-[#E54545]`
: `text-[#FFAEEE]`,
)}
>
{warning ? (
<img
src="/images/alert-triangle.svg"
alt=""
/>
) : (
<img src="/images/plus.svg" alt="" />
)}
Add Persons
</button>
</div>
</div>
</div>
) : (
<div></div>
)}
Copy link
Contributor

Choose a reason for hiding this comment

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

The conditional rendering for "group" and "anyone" conditions seems repetitive and could be refactored for better maintainability.

- {intent.conditions.includes("group") ? (
-     <div>
-         {/* group condition rendering */}
-     </div>
- ) : (
-     <div></div>
- )}
- {intent.conditions.indexOf("anyone") !== -1 ? (
-     <div>
-         {/* anyone condition rendering */}
-     </div>
- ) : (
-     <div></div>
- )}
+ {['group', 'anyone'].map(condition => (
+     intent.conditions.includes(condition) && (
+         <div>
+             {/* condition rendering */}
+         </div>
+     )
+ ))}

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.

Suggested change
{intent.conditions.includes("group") ? (
<div
className={clsx(
intent.conditions.includes("joint") &&
`mt-8 pt-4 mb-4 relative`,
)}
>
{intent.conditions.includes("joint") && (
<div
className="absolute text-[rgba(229,238,255,0.30)] text-xs left-1/2 top-0 translate-x-[-50%] translate-y-[-50%] w-full text-center
before:content-[''] before:w-[calc(50%_-_16px)] before:h-[1px] before:bg-[rgba(229,238,255,0.30)] before:block before:top-1/2 before:left-0 before:absolute
after:content-[''] after:w-[calc(50%_-_16px)] after:h-[1px] after:bg-[rgba(229,238,255,0.30)] after:block after:top-1/2 after:right-0 after:absolute"
>
OR
</div>
)}
<div className="mt-4 mb-4">
<div className="text-xl bg-transparent flex justify-between items-center font-bold">
Approval by certain amount
<div className="flex items-center gap-2">
{warning && (
<img
src="/images/alert-triangle.svg"
alt=""
/>
)}
<div
onClick={() =>
handleRemoveCondition(
intent.id,
"group",
)
}
className="group relative cursor-pointer"
>
<img src="/images/x.svg" alt="" />
<div className="opacity-0 w-fit bg-[rgba(229,238,255,0.15)] text-white text-center text-xs rounded py-2 px-3 absolute z-10 group-hover:opacity-100 top-[-18px] left-1/2 pointer-events-none whitespace-nowrap backdrop-blur-[20px] translate-x-[-50%] translate-y-[-100%] before:content-[''] before:absolute before:left-[50%] before:bottom-0 before:border-[rgba(229,238,255,0.15)] before:border-b-[8px] before:border-l-[8px] before:border-t-[transparent] before:border-r-[transparent] before:border-t-[8px] before:border-r-[8px] before:w-0 before:h-0 before:rotate-[-45deg] before:translate-y-[50%] before:translate-x-[-50%]">
Remove Condition
</div>
</div>
</div>
</div>
<div className="text-[rgba(229,238,255,0.60)] mt-1">
Any{" "}
<span
onClick={() => {
setIsCountChange(!isCountChange);
}}
className="min-w-[17px] text-center inline-block bg-[rgba(229,238,255,0.15)] border-[1px] border-[rgba(229,238,255,0.30)] px-[2px] text-white rounded-sm cursor-pointer relative"
>
{approvalAmount}
{isCountChange && (
<div className="w-[56px] bg-[rgba(229,238,255,0.15)] absolute z-10 top-1/2 right-[calc(-100%_-_12px)] translate-x-[100%] backdrop-blur-[20px] translate-y-[-50%] before:content-[''] before:absolute before:left-[0] before:top-1/2 before:border-[rgba(229,238,255,0.3)] before:border-b-[8px] before:border-l-[8px] before:border-t-[transparent] before:border-r-[transparent] before:border-t-[8px] before:border-r-[8px] before:w-0 before:h-0 before:rotate-[45deg] before:translate-y-[-50%] before:translate-x-[-50%]">
<div className="flex flex-col gap-[2px] text-white text-center text-sm py-1 px-1 max-h-[120px] overflow-scroll no-scrollbar">
{[2, 3, 4, 5, 6, 7, 8, 9].map(
(item, key) => {
return (
<div
className={clsx(
`min-h-[24px] flex justify-center items-center text-[rgba(229,238,255,0.60)]`,
item ==
approvalAmount &&
`text-white bg-[rgba(229,238,255,0.15)]`,
)}
key={key}
onClick={() => {
setApprovalAmount(
item,
);
}}
>
{item}
</div>
);
},
)}
</div>
</div>
)}
</span>{" "}
persons should approve the transaction
</div>
<div className="mt-8 flex items-center gap-[8px] flex-wrap">
{INTENTS.map((intent, key) => {
return (
<AddressUnit intent={intent} key={key} />
);
})}
<button
onClick={() => {
setIsPersonsModal(true);
}}
className={clsx(
`text-sm flex w-fit items-center gap-[10px] h-12`,
warning
? `text-[#E54545]`
: `text-[#FFAEEE]`,
)}
>
{warning ? (
<img
src="/images/alert-triangle.svg"
alt=""
/>
) : (
<img src="/images/plus.svg" alt="" />
)}
Add Persons
</button>
</div>
</div>
</div>
) : (
<div></div>
)}
{['group', 'anyone'].map(condition => (
intent.conditions.includes(condition) && (
<div
className={clsx(
intent.conditions.includes("joint") &&
`mt-8 pt-4 mb-4 relative`,
)}
>
{intent.conditions.includes("joint") && (
<div
className="absolute text-[rgba(229,238,255,0.30)] text-xs left-1/2 top-0 translate-x-[-50%] translate-y-[-50%] w-full text-center
before:content-[''] before:w-[calc(50%_-_16px)] before:h-[1px] before:bg-[rgba(229,238,255,0.30)] before:block before:top-1/2 before:left-0 before:absolute
after:content-[''] after:w-[calc(50%_-_16px)] after:h-[1px] after:bg-[rgba(229,238,255,0.30)] after:block after:top-1/2 after:right-0 after:absolute"
>
OR
</div>
)}
<div className="mt-4 mb-4">
<div className="text-xl bg-transparent flex justify-between items-center font-bold">
Approval by certain amount
<div className="flex items-center gap-2">
{warning && (
<img
src="/images/alert-triangle.svg"
alt=""
/>
)}
<div
onClick={() =>
handleRemoveCondition(
intent.id,
"group",
)
}
className="group relative cursor-pointer"
>
<img src="/images/x.svg" alt="" />
<div className="opacity-0 w-fit bg-[rgba(229,238,255,0.15)] text-white text-center text-xs rounded py-2 px-3 absolute z-10 group-hover:opacity-100 top-[-18px] left-1/2 pointer-events-none whitespace-nowrap backdrop-blur-[20px] translate-x-[-50%] translate-y-[-100%] before:content-[''] before:absolute before:left-[50%] before:bottom-0 before:border-[rgba(229,238,255,0.15)] before:border-b-[8px] before:border-l-[8px] before:border-t-[transparent] before:border-r-[transparent] before:border-t-[8px] before:border-r-[8px] before:w-0 before:h-0 before:rotate-[-45deg] before:translate-y-[50%] before:translate-x-[-50%]">
Remove Condition
</div>
</div>
</div>
</div>
<div className="text-[rgba(229,238,255,0.60)] mt-1">
Any{" "}
<span
onClick={() => {
setIsCountChange(!isCountChange);
}}
className="min-w-[17px] text-center inline-block bg-[rgba(229,238,255,0.15)] border-[1px] border-[rgba(229,238,255,0.30)] px-[2px] text-white rounded-sm cursor-pointer relative"
>
{approvalAmount}
{isCountChange && (
<div className="w-[56px] bg-[rgba(229,238,255,0.15)] absolute z-10 top-1/2 right-[calc(-100%_-_12px)] translate-x-[100%] backdrop-blur-[20px] translate-y-[-50%] before:content-[''] before:absolute before:left-[0] before:top-1/2 before:border-[rgba(229,238,255,0.3)] before:border-b-[8px] before:border-l-[8px] before:border-t-[transparent] before:border-r-[transparent] before:border-t-[8px] before:border-r-[8px] before:w-0 before:h-0 before:rotate-[45deg] before:translate-y-[-50%] before:translate-x-[-50%]">
<div className="flex flex-col gap-[2px] text-white text-center text-sm py-1 px-1 max-h-[120px] overflow-scroll no-scrollbar">
{[2, 3, 4, 5, 6, 7, 8, 9].map(
(item, key) => {
return (
<div
className={clsx(
`min-h-[24px] flex justify-center items-center text-[rgba(229,238,255,0.60)]`,
item ==
approvalAmount &&
`text-white bg-[rgba(229,238,255,0.15)]`,
)}
key={key}
onClick={() => {
setApprovalAmount(
item,
);
}}
>
{item}
</div>
);
},
)}
</div>
</div>
)}
</span>{" "}
persons should approve the transaction
</div>
<div className="mt-8 flex items-center gap-[8px] flex-wrap">
{INTENTS.map((intent, key) => {
return (
<AddressUnit intent={intent} key={key} />
);
})}
<button
onClick={() => {
setIsPersonsModal(true);
}}
className={clsx(
`text-sm flex w-fit items-center gap-[10px] h-12`,
warning
? `text-[#E54545]`
: `text-[#FFAEEE]`,
)}
>
{warning ? (
<img
src="/images/alert-triangle.svg"
alt=""
/>
) : (
<img src="/images/plus.svg" alt="" />
)}
Add Persons
</button>
</div>
</div>
</div>
)
))}

@jjheywood jjheywood merged commit b85eed1 into warden-protocol:main Apr 11, 2024
6 of 13 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants