Skip to content

Commit

Permalink
chore(lint): remove redundant type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
blombern authored and alextes committed Sep 30, 2023
1 parent 2d7decc commit 74fe763
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/relay/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as SharedConfig from "../config";
// Inside the cluster, we need to use the k8s service name to call the api.
// Outside the cluster, e.g. during build, we need to use the domain name.

export const getDomain = (isClientSide: boolean = false) => {
export const getDomain = (isClientSide = false) => {
const apiEnv = SharedConfig.apiEnvFromEnv();
const isBuild = process.env.BUILD === "true";

Expand Down

1 comment on commit 74fe763

@vercel
Copy link

@vercel vercel bot commented on 74fe763 Sep 30, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.