Skip to content

Conversation

@j-piasecki
Copy link
Member

@j-piasecki j-piasecki commented Jun 6, 2022

Description

GestureDetector was not reattaching gestures if the underlying view has changed, which was especially noticeable when using layout animations.
This PR updates GestureDetector to keep track of the tag of the view it's attached to and to reattach gestures it the tag changes.

The second commit also fixes gestures not reattaching when manually changing the underlying view (at the expense of forcing another render), but only when Reanimated is not used.
Applying the following patch:

Expand
diff --git a/node_modules/react-native-reanimated/src/createAnimatedComponent.tsx b/node_modules/react-native-reanimated/src/createAnimatedComponent.tsx
index 1cf0c3f..3f22437 100644
--- a/node_modules/react-native-reanimated/src/createAnimatedComponent.tsx
+++ b/node_modules/react-native-reanimated/src/createAnimatedComponent.tsx
@@ -294,19 +294,12 @@ export default function createAnimatedComponent(
       const node = this._getEventViewRef();
       const attached = new Set();
       const nextEvts = new Set();
-      let viewTag: number | undefined;
+      let viewTag: number | undefined =  RNRenderer.findHostInstance_DEPRECATED(this)._nativeTag;
 
       for (const key in this.props) {
         const prop = this.props[key];
         if (prop instanceof AnimatedEvent) {
           nextEvts.add((prop as AnimatedEvent).__nodeID);
-        } else if (
-          has('current', prop) &&
-          prop.current instanceof WorkletEventHandler
-        ) {
-          if (viewTag === undefined) {
-            viewTag = prop.current.viewTag;
-          }
         }
       }
       for (const key in prevProps) {
also makes it work when using Reanimated, but I'm not sure whether it's fine to change it this way upstream. This needs to be discussed.

Test plan

Tested on the Example app and on the following code:

Expand
import React, { useState } from 'react';
import { Text, View } from 'react-native';
import {
  FlatList,
  Gesture,
  GestureDetector,
} from 'react-native-gesture-handler';
import Animated, { BounceIn } from 'react-native-reanimated';

const items = [
  { name: 'Item A' },
  { name: 'Item B' },
  { name: 'Item C' },
  { name: 'Item D' },
  { name: 'Item A' },
  { name: 'Item B' },
  { name: 'Item C' },
  { name: 'Item D' },
  { name: 'Item A' },
  { name: 'Item B' },
  { name: 'Item C' },
  { name: 'Item D' },
  { name: 'Item A' },
  { name: 'Item B' },
  { name: 'Item C' },
  { name: 'Item D' },
  { name: 'Item A' },
  { name: 'Item B' },
  { name: 'Item C' },
  { name: 'Item D' },
];

function Item() {
  const [faved, setFaved] = useState(false);
  const color = faved ? '#900' : '#aaa';
  const tap = Gesture.Tap()
    .onEnd(() => {
      setFaved(!faved);
    })
    .runOnJS(true);

  return (
    <GestureDetector gesture={tap}>
      <Animated.View
        key={color}
        entering={BounceIn}
        style={{ backgroundColor: color, width: 30, height: 30 }}
      />
    </GestureDetector>
  );
}

function renderItem({ item }: { item: { name: string } }) {
  return (
    <View
      style={{
        width: '100%',
        height: 50,
        backgroundColor: 'red',
        flexDirection: 'row',
        justifyContent: 'space-between',
        padding: 10,
        alignItems: 'center',
      }}>
      <Text>{item.name}</Text>
      <Item />
    </View>
  );
}

export default function Example() {
  return (
    <View style={{ flex: 1 }}>
      <FlatList style={{ flex: 1 }} data={items} renderItem={renderItem} />
    </View>
  );
}

Code to test the second commit:

Expand
import React from 'react';
import { View } from 'react-native';
import { Gesture, GestureDetector } from 'react-native-gesture-handler';
import Animated from 'react-native-reanimated';

function Item() {
  console.log('render item');
  return (
    <Animated.View
      style={{
        alignSelf: 'center',
        width: 200,
        height: 200,
        backgroundColor: 'red',
      }}
    />
  );
}

export default function Example() {
  const gesture = Gesture.Tap()
    .onStart(() => {
      console.log('a', _WORKLET);
    })
    .runOnJS(true);
  console.log('render parent');
  return (
    <View style={{ flex: 1 }}>
      <GestureDetector gesture={gesture}>
        <Item />
      </GestureDetector>
    </View>
  );
}

Change between View and Animated.View while the app is running and check if the tap still works. Remove .runOnJS(true) to test using Reanimated.

@anhtuank7c
Copy link

Great work.
I facing the same issue.

@anhtuank7c
Copy link

Is there any update?

@j-piasecki j-piasecki merged commit 8d114ae into main Jan 9, 2023
@j-piasecki j-piasecki deleted the @jpiasecki/fix-detector-view-change branch January 9, 2023 10:38
hyochan referenced this pull request in hyochan/dooboo-ui Mar 12, 2023
…266)

[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[react-native-gesture-handler](https://togithub.com/software-mansion/react-native-gesture-handler)
| [`~2.8.0` ->
`~2.9.0`](https://renovatebot.com/diffs/npm/react-native-gesture-handler/2.8.0/2.9.0)
|
[![age](https://badges.renovateapi.com/packages/npm/react-native-gesture-handler/2.9.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/react-native-gesture-handler/2.9.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/react-native-gesture-handler/2.9.0/compatibility-slim/2.8.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/react-native-gesture-handler/2.9.0/confidence-slim/2.8.0)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>software-mansion/react-native-gesture-handler</summary>

###
[`v2.9.0`](https://togithub.com/software-mansion/react-native-gesture-handler/releases/tag/2.9.0)

[Compare
Source](https://togithub.com/software-mansion/react-native-gesture-handler/compare/2.8.0...2.9.0)

#### ❗ Important changes

- Support React Native 0.71 by
[@&#8203;j-piasecki](https://togithub.com/j-piasecki) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2313](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2313)

#### 🐛 Bug fixes

- Use `ReturnType` instead of explicit `AnimatedInterpolation` type by
[@&#8203;j-piasecki](https://togithub.com/j-piasecki) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2294](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2294)
- Fix default `shouldCancelWhenOutside` on iOS and Android by
[@&#8203;Warus15](https://togithub.com/Warus15) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2297](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2297)
- Fix `onBegin` and `onTouchesDown` event ordering on iOS by
[@&#8203;j-piasecki](https://togithub.com/j-piasecki) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2278](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2278)
- Fix buttons getting locked in some cases on Android by
[@&#8203;j-piasecki](https://togithub.com/j-piasecki) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2315](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2315)
- fix RNGH not working in pnpm project by
[@&#8203;chj-damon](https://togithub.com/chj-damon) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2334](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2334)
- GestureDetector: more checks for mounted component by
[@&#8203;phryneas](https://togithub.com/phryneas) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2335](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2335)
- Fix `GestureDetector` not working when the underlying view changes by
[@&#8203;j-piasecki](https://togithub.com/j-piasecki) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2092](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2092)
- Cocoapods: Fix deprecated/removed File.exists method by
[@&#8203;tomekzaw](https://togithub.com/tomekzaw) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2368](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2368)

#### 🔢 Miscellaneous

- Update React Native to 0.70.3 in the example apps by
[@&#8203;j-piasecki](https://togithub.com/j-piasecki) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2267](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2267)
- Reformat iOS codebase by
[@&#8203;j-piasecki](https://togithub.com/j-piasecki) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2296](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2296)
- Update the commit hash in `.git-blame-ignore-revs` by
[@&#8203;j-piasecki](https://togithub.com/j-piasecki) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2306](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2306)
- Provide proper Algolia Search API key by
[@&#8203;kacperkapusciak](https://togithub.com/kacperkapusciak) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2308](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2308)
- Fix search modal styling in the docs by
[@&#8203;j-piasecki](https://togithub.com/j-piasecki) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2309](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2309)
- Bump loader-utils from 2.0.0 to 2.0.3 in /docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2311](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2311)
- Fixed typo in doc: cancelsToucesInView > cancelsTouchesInView by
[@&#8203;vidalmaxime](https://togithub.com/vidalmaxime) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2318](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2318)
- Bump decode-uri-component from 0.2.0 to 0.2.2 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2338](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2338)
- Bump loader-utils from 2.0.3 to 2.0.4 in /docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2321](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2321)
- Bump qs from 6.10.1 to 6.11.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2342](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2342)
- Bump decode-uri-component from 0.2.0 to 0.2.2 in /FabricExample by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2340](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2340)
- \[docs] Fixed doubleTap example in docs by
[@&#8203;robwalkerco](https://togithub.com/robwalkerco) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2349](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2349)
- Bump json5 from 2.2.1 to 2.2.3 in /docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2366](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2366)
- Bump json5 from 2.2.1 to 2.2.3 in /FabricExample by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2365](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2365)

#### New Contributors

- [@&#8203;vidalmaxime](https://togithub.com/vidalmaxime) made their
first contribution in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2318](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2318)
- [@&#8203;chj-damon](https://togithub.com/chj-damon) made their first
contribution in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2334](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2334)
- [@&#8203;robwalkerco](https://togithub.com/robwalkerco) made their
first contribution in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2349](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2349)

**Full Changelog**:
software-mansion/react-native-gesture-handler@2.8.0...2.9.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/dooboolab/dooboo-ui).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xNjAuMCIsInVwZGF0ZWRJblZlciI6IjM0LjE2MC4wIn0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
hyochan referenced this pull request in hyochan/dooboo-ui Mar 19, 2023
…296)

[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[react-native-gesture-handler](https://togithub.com/software-mansion/react-native-gesture-handler)
| [`2.8.0` ->
`2.9.0`](https://renovatebot.com/diffs/npm/react-native-gesture-handler/2.8.0/2.9.0)
|
[![age](https://badges.renovateapi.com/packages/npm/react-native-gesture-handler/2.9.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/react-native-gesture-handler/2.9.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/react-native-gesture-handler/2.9.0/compatibility-slim/2.8.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/react-native-gesture-handler/2.9.0/confidence-slim/2.8.0)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>software-mansion/react-native-gesture-handler</summary>

###
[`v2.9.0`](https://togithub.com/software-mansion/react-native-gesture-handler/releases/tag/2.9.0)

[Compare
Source](https://togithub.com/software-mansion/react-native-gesture-handler/compare/2.8.0...2.9.0)

#### ❗ Important changes

- Support React Native 0.71 by
[@&#8203;j-piasecki](https://togithub.com/j-piasecki) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2313](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2313)

#### 🐛 Bug fixes

- Use `ReturnType` instead of explicit `AnimatedInterpolation` type by
[@&#8203;j-piasecki](https://togithub.com/j-piasecki) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2294](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2294)
- Fix default `shouldCancelWhenOutside` on iOS and Android by
[@&#8203;Warus15](https://togithub.com/Warus15) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2297](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2297)
- Fix `onBegin` and `onTouchesDown` event ordering on iOS by
[@&#8203;j-piasecki](https://togithub.com/j-piasecki) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2278](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2278)
- Fix buttons getting locked in some cases on Android by
[@&#8203;j-piasecki](https://togithub.com/j-piasecki) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2315](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2315)
- fix RNGH not working in pnpm project by
[@&#8203;chj-damon](https://togithub.com/chj-damon) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2334](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2334)
- GestureDetector: more checks for mounted component by
[@&#8203;phryneas](https://togithub.com/phryneas) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2335](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2335)
- Fix `GestureDetector` not working when the underlying view changes by
[@&#8203;j-piasecki](https://togithub.com/j-piasecki) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2092](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2092)
- Cocoapods: Fix deprecated/removed File.exists method by
[@&#8203;tomekzaw](https://togithub.com/tomekzaw) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2368](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2368)

#### 🔢 Miscellaneous

- Update React Native to 0.70.3 in the example apps by
[@&#8203;j-piasecki](https://togithub.com/j-piasecki) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2267](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2267)
- Reformat iOS codebase by
[@&#8203;j-piasecki](https://togithub.com/j-piasecki) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2296](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2296)
- Update the commit hash in `.git-blame-ignore-revs` by
[@&#8203;j-piasecki](https://togithub.com/j-piasecki) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2306](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2306)
- Provide proper Algolia Search API key by
[@&#8203;kacperkapusciak](https://togithub.com/kacperkapusciak) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2308](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2308)
- Fix search modal styling in the docs by
[@&#8203;j-piasecki](https://togithub.com/j-piasecki) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2309](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2309)
- Bump loader-utils from 2.0.0 to 2.0.3 in /docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2311](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2311)
- Fixed typo in doc: cancelsToucesInView > cancelsTouchesInView by
[@&#8203;vidalmaxime](https://togithub.com/vidalmaxime) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2318](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2318)
- Bump decode-uri-component from 0.2.0 to 0.2.2 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2338](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2338)
- Bump loader-utils from 2.0.3 to 2.0.4 in /docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2321](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2321)
- Bump qs from 6.10.1 to 6.11.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2342](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2342)
- Bump decode-uri-component from 0.2.0 to 0.2.2 in /FabricExample by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2340](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2340)
- \[docs] Fixed doubleTap example in docs by
[@&#8203;robwalkerco](https://togithub.com/robwalkerco) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2349](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2349)
- Bump json5 from 2.2.1 to 2.2.3 in /docs by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2366](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2366)
- Bump json5 from 2.2.1 to 2.2.3 in /FabricExample by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2365](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2365)

#### New Contributors

- [@&#8203;vidalmaxime](https://togithub.com/vidalmaxime) made their
first contribution in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2318](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2318)
- [@&#8203;chj-damon](https://togithub.com/chj-damon) made their first
contribution in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2334](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2334)
- [@&#8203;robwalkerco](https://togithub.com/robwalkerco) made their
first contribution in
[https://github.com/software-mansion/react-native-gesture-handler/pull/2349](https://togithub.com/software-mansion/react-native-gesture-handler/pull/2349)

**Full Changelog**:
software-mansion/react-native-gesture-handler@2.8.0...2.9.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/dooboolab/dooboo-ui).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMS4wIiwidXBkYXRlZEluVmVyIjoiMzUuMTEuMCJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
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.

4 participants