Skip to content

Commit

Permalink
Fix build errors and update contact to Formbricks GmbH (formbricks#585)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattinannt authored Jul 19, 2023
1 parent c52df00 commit dd6ac2e
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 16 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2023 Matthias Nannt, Johannes Dancker
Copyright (c) 2023 Formbricks GmbH

Portions of this software are licensed as follows:

Expand Down
3 changes: 1 addition & 2 deletions apps/formbricks-com/pages/imprint.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@ export const meta = {

## Information according to § 5 TMG

Johannes Dancker & Matthias Nannt\
Formbricks GmbH\
Kuhnkestr. 6\
c/o Starterkitchen\
24118 Kiel\
Germany

Expand Down
3 changes: 1 addition & 2 deletions apps/formbricks-com/pages/privacy-policy.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,8 @@ Please use the following contact information for privacy inquiries:

[email protected]

Johannes Dancker & Matthias Nannt<br/>
Formbricks GmbH<br/>
Kuhnkestr. 6<br/>
c/o Starterkitchen<br/>
24118 Kiel<br/>
Germany

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,6 @@ export interface OpenTextSummaryProps {
scale?: "number" | "star" | "smiley";
range?: number;
}[];
meta?: {
userAgent?: {
browser?: string;
os?: string;
device?: string;
};
};
};
}

Expand Down
4 changes: 2 additions & 2 deletions packages/database/jsonTypes.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { TActionClassNoCodeConfig } from "@formbricks/types/v1/actionClasses";
import { TResponsePersonAttributes, TResponseData } from "@formbricks/types/v1/responses";
import { TResponsePersonAttributes, TResponseData, TResponseMeta } from "@formbricks/types/v1/responses";
import { TSurveyClosedMessage, TSurveyQuestions, TSurveyThankYouCard } from "@formbricks/types/v1/surveys";
import { TUserNotificationSettings } from "@formbricks/types/v1/users";

Expand All @@ -8,7 +8,7 @@ declare global {
export type EventProperties = { [key: string]: string };
export type EventClassNoCodeConfig = TActionClassNoCodeConfig;
export type ResponseData = TResponseData;
export type ResponseMeta = { [key: string]: string };
export type ResponseMeta = TResponseMeta;
export type ResponsePersonAttributes = TResponsePersonAttributes;
export type SurveyQuestions = TSurveyQuestions;
export type SurveyThankYouCard = TSurveyThankYouCard;
Expand Down
2 changes: 1 addition & 1 deletion packages/errors/LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 Matthias Nannt, Johannes Dancker
Copyright (c) 2023 Formbricks GmbH

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
2 changes: 1 addition & 1 deletion packages/js/LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 Matthias Nannt, Johannes Dancker
Copyright (c) 2023 Formbricks GmbH

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
1 change: 1 addition & 0 deletions packages/types/v1/responses.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ export const ZResponseMeta = z.object({
userAgent: z.object({
browser: z.string().optional(),
os: z.string().optional(),
device: z.string().optional(),
}),
});

Expand Down

0 comments on commit dd6ac2e

Please sign in to comment.