Skip to content

Unable to Debug React Native Latest version (0.73) Chrome Debugger deprecated because of flipper this waring Attempting to debug JS in Flipper (deprecated). This requires Flipper to be installed on your system to handle the 'flipper://' URL scheme.Question: #14174

Unable to Debug React Native Latest version (0.73) Chrome Debugger deprecated because of flipper this waring Attempting to debug JS in Flipper (deprecated). This requires Flipper to be installed on your system to handle the 'flipper://' URL scheme.Question:

Unable to Debug React Native Latest version (0.73) Chrome Debugger deprecated because of flipper this waring Attempting to debug JS in Flipper (deprecated). This requires Flipper to be installed on your system to handle the 'flipper://' URL scheme.Question: #14174

Workflow file for this run

name: Label issues
# This workflow is triggered on issue comments.
on:
issue_comment:
types: created
permissions:
contents: read
jobs:
applyNeedsAttentionLabel:
permissions:
contents: read # for actions/checkout to fetch code
issues: write # for hramos/needs-attention to label issues
name: Apply Needs Attention Label
runs-on: ubuntu-latest
if: github.repository == 'facebook/flipper'
steps:
- uses: actions/checkout@v3
- name: Apply Needs Attention Label
uses: hramos/needs-attention@v2.0.0
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
id: needs-attention
- name: Result
run: echo '${{ steps.needs-attention.outputs.result }}'