From 85bcbb1b44348f7865d59d298406a2aa7ebf37b1 Mon Sep 17 00:00:00 2001 From: Narin Ratana Date: Fri, 9 Aug 2024 14:35:09 -0700 Subject: [PATCH] Remove safe area notes --- packages/components/src/components/Snackbar/Snackbar.tsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/packages/components/src/components/Snackbar/Snackbar.tsx b/packages/components/src/components/Snackbar/Snackbar.tsx index 62654277..462374b9 100644 --- a/packages/components/src/components/Snackbar/Snackbar.tsx +++ b/packages/components/src/components/Snackbar/Snackbar.tsx @@ -87,10 +87,6 @@ export type SnackbarProps = Omit & snackbarData * * ) * ``` - * **Note:** If your project is using [react-native-safe-area-context](https://www.npmjs.com/package/react-native-safe-area-context) - * we recommend that you place the `` within ``. This will provide - * default offsets adjusted to iOS and Android. Otherwise, you may have to provide - * an `offset` each time you want to show a Snackbar. * * Then within any component, import the `useSnackbar` hook and use the .show() or .hide() * methods to display a Snackbar: