File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,12 +11,12 @@ const itemShape = (): ShapeStreamOptions => {
11
11
if ( typeof window !== `undefined` ) {
12
12
return {
13
13
url : new URL ( `/shape-proxy` , window ?. location . origin ) . href ,
14
- table : `items` ,
14
+ params : { table : `items` } ,
15
15
}
16
16
} else {
17
17
return {
18
18
url : new URL ( `https://not-sure-how-this-works.com/shape-proxy` ) . href ,
19
- table : `items` ,
19
+ params : { table : `items` } ,
20
20
}
21
21
}
22
22
}
Original file line number Diff line number Diff line change @@ -41,4 +41,4 @@ export async function GET(request: Request) {
41
41
} )
42
42
}
43
43
return resp
44
- }
44
+ }
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ function getNeonDbUri(
103
103
? endpoint . endpoints ?. apply ( ( endpoints ) =>
104
104
endpoints ! [ 0 ] . host . replace (
105
105
endpoints ! [ 0 ] . id ,
106
- endpoints ! [ 0 ] . id + " -pooler"
106
+ endpoints ! [ 0 ] . id + ` -pooler`
107
107
)
108
108
)
109
109
: project . databaseHost
You can’t perform that action at this time.
0 commit comments