Skip to content

Commit

Permalink
fix(build): forcing release to update models reference
Browse files Browse the repository at this point in the history
  • Loading branch information
rallieon committed Sep 9, 2021
1 parent f1a72d9 commit 1a5d2c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/server/src/api/haste.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export class Haste {
}

if (!configuration) {
throw new Error(`You must provide a haste configuration.`);
throw new Error(`You must provide a haste configuration object.`);
}

const url = buildUrl(configuration.hostProtocol, configuration.host, configuration.port);
Expand Down
2 changes: 1 addition & 1 deletion packages/web/src/api/hasteClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export class HasteClient {
}

public static async build(clientId: string, domain = 'haste-development.us.auth0.com') {
if (!isBrowser()) throw new Error(`Haste client build may only be called from a browser based environment please.`);
if (!isBrowser()) throw new Error(`Haste client build may only be called from a browser based environment`);

const auth0 = await createAuth0Client({
domain: domain,
Expand Down

0 comments on commit 1a5d2c8

Please sign in to comment.