Skip to content

Commit

Permalink
Merge branch 'HPC-9502-sync' into env/blue.dev
Browse files Browse the repository at this point in the history
  • Loading branch information
seniorITdev committed May 10, 2024
2 parents 556fd13 + e8e32e2 commit 55d2125
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 18 deletions.
2 changes: 0 additions & 2 deletions libs/hpc-data/src/lib/projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ const PDF = t.type({

export const PROJECT = t.type({
id: t.number,
restricted: t.boolean,
createdAt: t.string,
updatedAt: t.string,
code: t.union([t.string, t.null]),
Expand All @@ -43,7 +42,6 @@ export const PROJECT = t.type({
export const PROJECT_DETAIL = t.intersection([
t.type({
id: t.number,
restricted: t.boolean,
createdAt: t.string,
updatedAt: t.string,
code: t.union([t.string, t.null]),
Expand Down
14 changes: 0 additions & 14 deletions libs/hpc-dummy/src/lib/dummy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1869,7 +1869,6 @@ export class Dummy {
return [
{
id: 1987,
restricted: false,
createdAt: '2002-02-28T00:00:00.000Z',
updatedAt: '2017-02-06T20:16:57.141Z',
code: 'apts626',
Expand All @@ -1886,7 +1885,6 @@ export class Dummy {
},
{
id: 1988,
restricted: false,
createdAt: '2002-02-28T00:00:00.000Z',
updatedAt: '2017-02-06T20:16:57.153Z',
code: 'apts627',
Expand All @@ -1903,7 +1901,6 @@ export class Dummy {
},
{
id: 1989,
restricted: false,
createdAt: '2002-02-28T00:00:00.000Z',
updatedAt: '2017-02-06T20:16:57.185Z',
code: 'apts628',
Expand All @@ -1920,7 +1917,6 @@ export class Dummy {
},
{
id: 1991,
restricted: false,
createdAt: '2002-02-28T00:00:00.000Z',
updatedAt: '2017-02-06T20:16:57.306Z',
code: 'apts630',
Expand All @@ -1937,7 +1933,6 @@ export class Dummy {
},
{
id: 2001,
restricted: false,
createdAt: '2002-02-28T00:00:00.000Z',
updatedAt: '2017-02-06T20:16:57.819Z',
code: 'apts641',
Expand All @@ -1954,7 +1949,6 @@ export class Dummy {
},
{
id: 2002,
restricted: false,
createdAt: '2002-02-28T00:00:00.000Z',
updatedAt: '2017-02-06T20:16:57.909Z',
code: 'apts645',
Expand All @@ -1971,7 +1965,6 @@ export class Dummy {
},
{
id: 2004,
restricted: false,
createdAt: '2002-02-28T00:00:00.000Z',
updatedAt: '2017-02-06T20:16:57.938Z',
code: 'apts647',
Expand All @@ -1988,7 +1981,6 @@ export class Dummy {
},
{
id: 2027,
restricted: false,
createdAt: '2002-02-28T00:00:00.000Z',
updatedAt: '2017-02-06T20:16:59.008Z',
code: 'apts673',
Expand All @@ -2005,7 +1997,6 @@ export class Dummy {
},
{
id: 2028,
restricted: false,
createdAt: '2002-02-28T00:00:00.000Z',
updatedAt: '2017-02-06T20:16:59.019Z',
code: 'apts674',
Expand All @@ -2022,7 +2013,6 @@ export class Dummy {
},
{
id: 2043,
restricted: false,
createdAt: '2002-02-28T00:00:00.000Z',
updatedAt: '2017-02-06T20:16:59.639Z',
code: 'apts690',
Expand All @@ -2039,7 +2029,6 @@ export class Dummy {
},
{
id: 2045,
restricted: false,
createdAt: '2002-02-28T00:00:00.000Z',
updatedAt: '2017-02-06T20:16:59.686Z',
code: 'apts692',
Expand All @@ -2056,7 +2045,6 @@ export class Dummy {
},
{
id: 2046,
restricted: false,
createdAt: '2002-02-28T00:00:00.000Z',
updatedAt: '2017-02-06T20:16:59.740Z',
code: 'apts693',
Expand All @@ -2073,7 +2061,6 @@ export class Dummy {
},
{
id: 2047,
restricted: false,
createdAt: '2002-02-28T00:00:00.000Z',
updatedAt: '2017-02-06T20:16:59.810Z',
code: 'apts694',
Expand All @@ -2090,7 +2077,6 @@ export class Dummy {
},
{
id: 2048,
restricted: false,
createdAt: '2002-02-28T00:00:00.000Z',
updatedAt: '2017-02-06T20:16:59.822Z',
code: 'apts695',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,6 @@ const AsyncAutocompleteSelect = ({
(responseValue as projects.Project).code
}]`,
value: responseValue.id,
restricted: (responseValue as projects.Project).restricted,
};
} else if (
name === 'sourceGoverningEntities' ||
Expand Down Expand Up @@ -703,7 +702,6 @@ const FormikAsyncAutocompleteSelect = ({
(responseValue as projects.Project).code
}]`,
value: responseValue.id,
restricted: (responseValue as projects.Project).restricted,
};
} else if (
name === 'sourceGoverningEntities' ||
Expand Down

0 comments on commit 55d2125

Please sign in to comment.