Skip to content

Commit ecdd461

Browse files
committed
fix border color #5
1 parent b46ee05 commit ecdd461

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@colyseus/playground",
3-
"version": "0.15.13",
3+
"version": "0.15.14",
44
"dependencies": {
55
"@colyseus/core": "^0.15.0",
66
"@colyseus/auth": "^0.15.0"

src/components/AuthOptions.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export function AuthOptions({
101101
}, []);
102102

103103
return (
104-
<div className="border-b pb-4">
104+
<div className="border-b pb-4 border-gray-300 dark:border-slate-500">
105105
<div className="flex">
106106
<input
107107
type="text"

src/utils/Types.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ export const endpoint = `${baseEndpoint}${window.location.pathname.replace(/\/+$
1313

1414
export const client = new Client(baseEndpoint);
1515

16-
// export const endpoint = "http://localhost:2567/playground";
17-
// export const client = new Client("http://localhost:2567");
18-
1916
export const global = { connections: [] as Connection[], };
2017

2118
export const roomsBySessionId: { [sessionId: string]: Room } = {};

0 commit comments

Comments
 (0)