Skip to content

Commit

Permalink
rename language to locale
Browse files Browse the repository at this point in the history
  • Loading branch information
FZambia committed Mar 14, 2024
1 parent 098dfca commit a1e065a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pages/PushNotification/PushNotification.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function createData(
platform: string,
user: string,
timezone: string,
language: string,
locale: string,
created_at: number,
updated_at: number,
meta: any,
Expand All @@ -66,7 +66,7 @@ function createData(
platform,
user,
timezone,
language,
locale,
created_at,
updated_at,
meta,
Expand Down Expand Up @@ -304,7 +304,7 @@ export function PushNotification({
item.platform,
item.user,
item.timezone || '',
item.language || '',
item.locale || '',
item.created_at,
item.updated_at,
item.meta,
Expand Down Expand Up @@ -755,7 +755,7 @@ export function PushNotification({
<TableCell align="right">{node.platform}</TableCell>
<TableCell align="right">{node.user}</TableCell>
<TableCell align="right">{node.timezone}</TableCell>
<TableCell align="right">{node.language}</TableCell>
<TableCell align="right">{node.locale}</TableCell>
<TableCell align="right">
{new Date(node.created_at).toLocaleString()}
</TableCell>
Expand Down

0 comments on commit a1e065a

Please sign in to comment.