aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAnton Tananaev <anton@traccar.org>2024-05-09 15:43:54 -0700
committerAnton Tananaev <anton@traccar.org>2024-05-09 15:43:54 -0700
commit1e82bfd81e85c5cd51fab4355ebdc218e66b18ad (patch)
treeafb80b03425ee6618716389d57a93e985bcbb4b6 /src
parent577e3fbece3ef07577a7486513c98217e1a32f69 (diff)
downloadtrackermap-web-1e82bfd81e85c5cd51fab4355ebdc218e66b18ad.tar.gz
trackermap-web-1e82bfd81e85c5cd51fab4355ebdc218e66b18ad.tar.bz2
trackermap-web-1e82bfd81e85c5cd51fab4355ebdc218e66b18ad.zip
Fix lint issues
Diffstat (limited to 'src')
-rw-r--r--src/common/components/TermsDialog.jsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/common/components/TermsDialog.jsx b/src/common/components/TermsDialog.jsx
index 4b909415..2ac74f2e 100644
--- a/src/common/components/TermsDialog.jsx
+++ b/src/common/components/TermsDialog.jsx
@@ -1,6 +1,8 @@
import React from 'react';
import { useSelector } from 'react-redux';
-import { Button, Dialog, DialogActions, DialogContent, DialogContentText, Link } from '@mui/material';
+import {
+ Button, Dialog, DialogActions, DialogContent, DialogContentText, Link,
+} from '@mui/material';
import { useTranslation } from './LocalizationProvider';
const TermsDialog = ({ open, onCancel, onAccept }) => {