Skip to content

Commit

Permalink
fix: rolling keys, updating text, fixing liveblocks error
Browse files Browse the repository at this point in the history
  • Loading branch information
RPDeshaies committed Nov 4, 2024
1 parent 8bb16a7 commit b617060
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 10 deletions.
3 changes: 1 addition & 2 deletions lib/components/AppRouter/AppRouter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ const initialStorage = {
scene: new LiveObject(),
characters: new LiveObject(),
session: new LiveObject(),
chat: new LiveObject(),
};

export const AppRouter = () => {
Expand Down Expand Up @@ -92,7 +93,6 @@ export const AppRouter = () => {
/>
}
/>
;
<Route
path={"play/:id"}
element={
Expand All @@ -110,7 +110,6 @@ export const AppRouter = () => {
/>
}
/>
;
<Route
path={"/play/join/:id"}
element={
Expand Down
7 changes: 1 addition & 6 deletions lib/routes/Home/HomeRoute.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -530,11 +530,6 @@ export const HomeRoute: React.FC<{}> = () => {
features are being developed or implemented.
<br />
<br />
Online play is currently broken because the third-party service we
relied on has broken its API contract with us, and we don&apos;t have
the time to adress this issue.
<br />
<br />
If you’d like to contribute to the app, please feel free to open a PR{" "}
<Link href="https://github.com/farirpgs/fari-app" fontWeight={"bold"}>
here
Expand All @@ -557,7 +552,7 @@ export const HomeRoute: React.FC<{}> = () => {
alignItems="center"
justifyContent={"center"}
>
{false && (
{true && (
<Grid item lg={6} xs={12}>
{
<Button
Expand Down
4 changes: 2 additions & 2 deletions lib/services/liveblocks/makeLiveBlocksClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { createClient } from "@liveblocks/client";
export function makeLiveBlocksClient() {
return createClient({
publicApiKey: false
? "pk_test_ETujS9FV5jeieP0ussc8xBkQ"
: "pk_live_LQJHauN3xAZFOMO6XY7fscYK",
? "pk_dev_idze__Foj9T2QRR01oBR1su_4y-gl_mx8JwL90_FjQrsrtqxLnvJw5Q1GooxboHQ"
: "pk_prod_DW7rLdIMrMduCwv9ETNWBueq2ih0mUFHJdeisqaw15jZtJrLb6Z_G80IjQS_kBW8",
});
}

0 comments on commit b617060

Please sign in to comment.