From 9fa9f8ee47b5d958c67aa91648945d31dd98341f Mon Sep 17 00:00:00 2001 From: Anang20 Date: Mon, 14 Nov 2022 11:22:45 +0700 Subject: [PATCH] fix: eslint rules --- pages/policy-terms/index.js | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/pages/policy-terms/index.js b/pages/policy-terms/index.js index e2e2f31..92cf6a8 100644 --- a/pages/policy-terms/index.js +++ b/pages/policy-terms/index.js @@ -9,27 +9,21 @@ const PolicyTerms = observer(() => { const general_requirements = [ { - key: 1, value: 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since ', }, { - key: 2, value: 'bled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop', }, { - key: 3, value: 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since ', }, { - key: 4, value: 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since ', }, { - key: 5, value: 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since ', }, { - key: 6, value: 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since ', }, ] @@ -45,8 +39,8 @@ const PolicyTerms = observer(() => {

Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged

,

Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged

,

Ketentuan Umum

, - general_requirements.map(value => ( -

{number++}. {value?.value}

+ general_requirements.map((value, index) => ( +

{number++}. {value?.value}

)) ], }, @@ -55,12 +49,12 @@ const PolicyTerms = observer(() => { key: '2', children: [

Kebijakan Privasi (Privacy Policy)

, -

PENTING: Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged

, -

Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged

, -

Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged

, +

PENTING: Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged

, +

Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged

, +

Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged

,

Ketentuan Umum

, - general_requirements.map(value => ( -

{number2++}. {value?.value}

+ general_requirements.map((value, index) => ( +

{number2++}. {value?.value}

)) ], },