Исправляем ошибку user is not in the sudoers file
| { | |
| "AFG": {"iso2": "AF", "iso3": "AFG", "name": "Afghanistan"}, | |
| "ALB": {"iso2": "AL", "iso3": "ALB", "name": "Albania"}, | |
| "ALG": {"iso2": "DZ", "iso3": "DZA", "name": "Algeria"}, | |
| "AND": {"iso2": "AD", "iso3": "AND", "name": "Andorra"}, | |
| "ANG": {"iso2": "AO", "iso3": "AGO", "name": "Angola"}, | |
| "ANT": {"iso2": "AG", "iso3": "ATG", "name": "Antigua and Barbuda"}, | |
| "ARG": {"iso2": "AR", "iso3": "ARG", "name": "Argentina"}, | |
| "ARM": {"iso2": "AM", "iso3": "ARM", "name": "Armenia"}, | |
| "ARU": {"iso2": "AW", "iso3": "ABW", "name": "Aruba"}, |
| import { forward } from "effector"; | |
| import { createGate } from "effector-react"; | |
| import { createCached } from "store/helpers"; | |
| export const delegationSelectGage = createGate(); | |
| const [doFetch, $delegation, $loading] = createCached<void, Data[]>( | |
| fetchDelegations, | |
| "delegation" | |
| ); |
| import { createBrowserHistory } from "history"; | |
| export const browserHistory = createBrowserHistory(); |