Skip to content

Commit 58d880d

Browse files
Fix typo
1 parent 459c595 commit 58d880d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/react-components/push-notification.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { PushNotification } from "../push-notification";
77
* @returns A `Card` component containing PushNotification model as a `Heading` in the `CardHeader` and PushNotification name as a `Text` in the `CardBody`.
88
*/
99
export function PushNotification(param: PushNotificationOptions) {
10-
const {PushNotification} = param;
10+
const {pushNotification: PushNotification} = param;
1111
return <Card {...param.cardProps}>
1212
<CardHeader>
1313
<Heading>
@@ -30,6 +30,6 @@ export interface PushNotificationOptions {
3030
/**
3131
* All PushNotification information
3232
*/
33-
PushNotification: PushNotification
33+
pushNotification: PushNotification
3434
cardProps?: CardProps
3535
}

0 commit comments

Comments
 (0)