mirror of
https://github.com/RoboSats/robosats.git
synced 2025-01-31 02:21:35 +00:00
Fix f2f randomization
This commit is contained in:
parent
d5f6e2cbd8
commit
2d6cc04d2b
@ -13,7 +13,6 @@ import {
|
||||
} from '@mui/material';
|
||||
import { PhotoSizeSelectActual } from '@mui/icons-material';
|
||||
import Map from '../Map';
|
||||
import { randomNumberBetween } from '@mui/x-data-grid/utils/utils';
|
||||
|
||||
interface Props {
|
||||
open: boolean;
|
||||
@ -44,8 +43,10 @@ const F2fMapDialog = ({
|
||||
|
||||
const onSave = () => {
|
||||
if (position && position[0] && position[1]) {
|
||||
const randomAggregator = randomNumberBetween(Math.random(), -0.005, 0.005);
|
||||
onClose([position[0] + randomAggregator(), position[1] + randomAggregator()]);
|
||||
onClose([
|
||||
position[0] + Math.random() * 0.02 - 0.01,
|
||||
position[1] + Math.random() * 0.02 - 0.01,
|
||||
]);
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user