File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
import { t } from '@shinkai_network/shinkai-i18n' ;
2
2
3
- export const analyticsBulletPoints = [
3
+ export const analyticsBulletPoints = ( ) => [
4
4
t ( 'analytics.bulletPoints.one' ) ,
5
5
t ( 'analytics.bulletPoints.two' ) ,
6
6
t ( 'analytics.bulletPoints.three' ) ,
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ const AnalyticsSettingsPage = () => {
17
17
< p className = "font-medium" > { t ( 'analytics.title' ) } </ p >
18
18
< div className = "mt-10 flex flex-1 flex-col gap-10 text-sm text-gray-50" >
19
19
< ul className = "space-y-5 text-gray-50" >
20
- { analyticsBulletPoints . map ( ( item ) => (
20
+ { analyticsBulletPoints ( ) . map ( ( item ) => (
21
21
< li key = { item } > { item } </ li >
22
22
) ) }
23
23
</ ul >
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ const AnalyticsPage = () => {
20
20
</ p >
21
21
< div className = "mt-10 flex flex-1 flex-col gap-10 text-sm text-gray-50" >
22
22
< ul className = "space-y-3 text-gray-50" >
23
- { analyticsBulletPoints . map ( ( item ) => (
23
+ { analyticsBulletPoints ( ) . map ( ( item ) => (
24
24
< li key = { item } > { item } </ li >
25
25
) ) }
26
26
</ ul >
You can’t perform that action at this time.
0 commit comments