# Default User Settings

### **Default slippage:** *slippage*

The default slippage must be selected from the slippage options, which can be a number between 0 and 1. Setting `slippage` to `undefined` will make Squid to define the best slippage for each route:

```jsx
slippage: 1 // number between 0-1, or undefined for "Auto" mode
```

### **Disable chains settings:** *disabledChains*

You can disable chains for a specific direction by specifying them in the `disabledChains` setting.

Disabled chains will not be displayed in the chains list on the widget:

```jsx
disabledChains: {
  source: [
    "1", // Ethereum
    "137" // Polygon
  ],
  destination: [
    "osmosis-1" // Osmosis
  ];
};
```

### **Price impact warning trigger points:** *priceImpactWarnings*

The user will receive a warning in the UI if the price impact percentage is over the `warning` value, and will be unable to swap if the price impact is over the `critical` value.

We recommend keeping these as default.

```jsx
priceImpactWarnings: {
  warning: 3,
  critical: 5,
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.squidrouter.com/widget-integration/add-a-widget/widget/customization-guide/default-user-settings.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
