Skip to content

fix: resolving false contrast accessibility error #7797

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

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/fragments/lib-v1/graphqlapi/android/subscribe-data.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ val subscription = Amplify.API.subscribe(
{ Log.i("ApiQuickStart", "Subscription established") },
{ Log.i("ApiQuickStart", "Todo create subscription received: ${(it.data as Todo).name}") },
{ Log.e("ApiQuickStart", "Subscription failed", it) },
{ Log.i("ApiQuickStart", "Subscription completed") }
)
{ Log.i("ApiQuickStart", "Subscription completed") }
) //changes here

// Cancel the subscription listener when you're finished with it
subscription.cancel();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -468,6 +468,8 @@ import android1 from '/src/fragments/lib-v1/graphqlapi/android/subscribe-data.md

<Fragments fragments={{ android: android1 }} />

// changes here too

import flutter3 from '/src/fragments/lib-v1/graphqlapi/flutter/subscribe-data.mdx';

<Fragments fragments={{ flutter: flutter3 }} />