Compare commits

..

No commits in common. "c107fcff448b1c4bd6a9e7091ea2ca78b772a076" and "80ca56992cf38ecffc36390a9957e87e863f82a5" have entirely different histories.

2 changed files with 5 additions and 7 deletions

View File

@ -26,11 +26,11 @@ export interface MatrixCell {
// in the project-wide .env file. This is intentional. The optional-
// chaining operator will catch these errors.
export function initializeMatrix(): Matrix {
const led_width = Number(env.PUBLIC_LED_WIDTH ?? '64');
const led_height = Number(env.PUBLIC_LED_HEIGHT ?? '64');
const led_width = Number(env?.PUBLIC_LED_WIDTH ?? '64');
const led_height = Number(env?.PUBLIC_LED_HEIGHT ?? '64');
const led_chain = Number(env.PUBLIC_LED_CHAIN ?? '1');
const led_parallel = Number(env.PUBLIC_LED_PARALLEL ?? '1');
const led_chain = Number(env?.PUBLIC_LED_CHAIN ?? '1');
const led_parallel = Number(env?.PUBLIC_LED_PARALLEL ?? '1');
return {
width: led_width * led_parallel,

View File

@ -1,7 +1,5 @@
import * as env from '$env/static/private';
import { API_SERVER_IP, API_SERVER_PORT } from '$env/static/private';
export function buildAPIStr(endpoint: string) {
const API_SERVER_IP = env.API_SERVER_IP;
const API_SERVER_PORT = env.API_SERVER_PORT;
return `http://${API_SERVER_IP ?? 'localhost'}:${API_SERVER_PORT ?? '8080'}/${endpoint}`;
}