mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 12:29:55 +08:00
lint(eslint): migrate to eslint and prettier (#25046)
This commit is contained in:
@ -7,7 +7,6 @@
|
||||
* the 0 breakpoint.
|
||||
*/
|
||||
export const getBackdropValueForSheet = (x: number, backdropBreakpoint: number) => {
|
||||
|
||||
/**
|
||||
* We will use these points:
|
||||
* (backdropBreakpoint, 0)
|
||||
@ -48,5 +47,5 @@ export const getBackdropValueForSheet = (x: number, backdropBreakpoint: number)
|
||||
* gesture offset.
|
||||
*/
|
||||
|
||||
return (x * slope) + b;
|
||||
}
|
||||
return x * slope + b;
|
||||
};
|
||||
|
Reference in New Issue
Block a user